/* ---- Base ---- */
:root {
    --bg: #0b1220;
    --bg-elev: #0f172a;
    --surface: #0b1220;
    --surface-2: #0a1020;
    --text: #e5e7eb;
    --muted: #94a3b8;
    --primary: #a3e635;
    /* lime */
    --border: rgba(148, 163, 184, 0.18);
    --radius: 16px;
    --radius-lg: 24px;
    --shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    background: radial-gradient(1200px 700px at 10% -10%, #1a2645 0%, transparent 60%),
        radial-gradient(900px 600px at 120% 10%, #10243e 0%, transparent 55%),
        var(--bg);
    color: var(--text);
    line-height: 1.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
    font-weight: 800;
    letter-spacing: 0.02em;
    font-size: 20px;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.8;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: var(--primary);
    opacity: 1;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: 4px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 73px;
    /* Height of navbar + border */
    left: 0;
    width: 100%;
    height: 0;
    background: var(--bg-elev);
    overflow: hidden;
    transition: height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border-bottom: 1px solid var(--border);
    z-index: 99;
}

.mobile-menu.active {
    height: auto;
    border-bottom: 1px solid var(--border);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
}

.mobile-nav a {
    font-size: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text);
    text-decoration: none;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {

    .nav-links,
    .nav-buttons {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }
}

.cta {
    background: var(--primary);
    color: #0a0a0a;
    padding: 10px 16px;
    border-radius: 999px;
    border: none;
    font-weight: 600;
}

.cta:hover {
    filter: brightness(1.05);
    cursor: pointer;
}

.section {
    padding: 64px 0;
}

/* ---- Hero Styles ---- */
.hero-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 24px auto;
    padding: 0 24px;
}

.hero-container {
    position: relative;
    width: 100%;
    min-height: 600px;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(180deg, rgba(11, 18, 32, 0) 0%, rgba(11, 18, 32, 0.4) 50%, rgba(11, 18, 32, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 64px 48px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.hero-text-content {
    max-width: 600px;
}

.hero-title {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.hero-title span {
    color: var(--primary);
}

.hero-description {
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
}

.role-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 16px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    width: 220px;
}

.app-btn:hover {
    background: rgba(15, 23, 42, 0.85);
    transform: translateY(-2px);
    border-color: var(--primary);
}

.app-btn:hover .btn-label {
    color: var(--primary);
}

.btn-label {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    flex: 1;
    transition: color 0.2s ease;
}

.btn-store {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #000;
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.store-text span:first-child {
    font-size: 9px;
    color: #ccc;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.store-text span:last-child {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

/* Social Floating */
.hero-social {
    position: absolute;
    top: 32px;
    right: 32px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.social-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.social-icons {
    display: flex;
    gap: 10px;
}

.hero-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: all 0.2s ease;
    backdrop-filter: blur(4px);
}

.hero-social-link:hover {
    transform: translateY(-3px);
    background: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
        padding: 40px;
    }

    .hero-actions {
        align-items: flex-start;
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .role-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .hero-container {
        min-height: 560px;
        border-radius: 20px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-content {
        padding: 24px;
    }

    .hero-social {
        top: 20px;
        right: 20px;
    }

    .role-buttons {
        flex-direction: column;
        width: 100%;
    }

    .app-btn {
        width: 100%;
    }
}

.steps {
    padding: 24px 0 60px;
}

.step-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.step {
    background: #0b1220;
    padding: 18px;
    border-radius: 14px;
    border: 1px solid var(--border);
    min-height: 120px;
}

.section-title {
    font-size: 28px;
    margin: 0 0 16px;
}

.section-lead {
    color: var(--muted);
    margin: 0 0 24px;
    max-width: 720px;
}

/* ---- Footer Styles ---- */
.site-footer {
    position: relative;
    margin-top: 80px;
    background: linear-gradient(180deg, var(--bg-elev) 0%, #0a0f1a 100%);
    border-top: 1px solid var(--border);
    overflow: hidden;
}

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    color: var(--bg);
    opacity: 0.6;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

.footer-content {
    position: relative;
    padding: 80px 0 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr;
    gap: 48px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Brand Section */
.footer-brand {
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.logo-icon {
    flex-shrink: 0;
}

.footer-logo h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--text);
}

.footer-tagline {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(163, 230, 53, 0.08);
    border: 1px solid rgba(163, 230, 53, 0.2);
    border-radius: 10px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    color: #0a0a0a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(163, 230, 53, 0.25);
}

/* Footer Headings */
.footer-heading {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 8px 0;
    letter-spacing: 0.02em;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.footer-links a:hover::before {
    width: 100%;
}

/* Contact Section */
.footer-contact-section {
    gap: 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    padding: 8px 0;
}

.contact-link svg {
    flex-shrink: 0;
    opacity: 0.7;
    transition: all 0.2s ease;
}

.contact-link:hover {
    color: var(--primary);
}

.contact-link:hover svg {
    opacity: 1;
    transform: scale(1.1);
}

/* Newsletter */
.newsletter {
    margin-top: 8px;
}

.newsletter-text {
    font-size: 13px;
    color: var(--muted);
    margin: 0 0 12px 0;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 4px;
    transition: all 0.3s ease;
}

.newsletter-form:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(163, 230, 53, 0.1);
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text);
    font-size: 14px;
    padding: 10px 12px;
    font-family: inherit;
}

.newsletter-form input::placeholder {
    color: var(--muted);
    opacity: 0.6;
}

.newsletter-btn {
    background: var(--primary);
    border: none;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.newsletter-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(163, 230, 53, 0.3);
}

.newsletter-btn svg {
    transition: transform 0.2s ease;
}

.newsletter-btn:hover svg {
    transform: translateX(2px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 24px 0;
    background: rgba(10, 15, 26, 0.5);
}

.footer-bottom .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    grid-template-columns: 1fr;
}

.copyright {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-bottom-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

.footer-bottom-links .separator {
    color: var(--border);
    user-select: none;
}

/* Responsive */
/* Responsive */
@media (max-width: 1024px) {
    .step-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-contact-section {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-content {
        padding: 60px 0 32px;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-contact-section {
        grid-column: 1 / -1;
    }

    .footer-bottom .footer-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .navbar nav {
        gap: 14px;
    }

    /* Update hero title for mobile if needed, though already handled in main hero block */
    .hero-title {
        font-size: 40px;
    }

    .step-grid {
        grid-template-columns: 1fr;
    }

    .footer-wave {
        height: 80px;
    }

    .footer-content {
        padding: 48px 0 24px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-brand,
    .footer-contact-section {
        grid-column: 1;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 8px;
    }

    .newsletter-btn {
        width: 100%;
    }
}