/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #f9a631;
    --primary-dark: #00D9FF;
    --text-primary: #003B2F;
    --text-secondary: #666666;
    --text-light: #999999;
    --text-white: #FFFFFF;
    --bg-white: #FFFFFF;
    --bg-light: #000;
    --bg-dark: #1A1A1A;
    --bg-hero: #003B2F;
    --border-color: #E5E5E5;
    --success-color: #00C853;
    --error-color: #FF5252;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    --font-heading: 'GT Sectra Fine', 'Georgia', serif;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    --container-width: 1200px;
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 76.8px;
    letter-spacing: normal;
    font-family: var(--font-heading), serif;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

mark {
    background: transparent;
    color: #03FC9D;
    font-weight: 600;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Header */
.header {
    background: var(--bg-light);
    /* border-bottom: 1px solid var(--border-color); */
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    height: 62px;
    display: flex;
    align-items: center;
}

.header-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: var(--spacing-lg);
}

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

.logo img {
    height: 32px;
    width: auto;
    display: block;
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    flex: 1;
    justify-content: center;
}

.nav a {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
    padding: var(--spacing-xs) 0;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    height: 100%;
}

.header-actions .btn-primary {
    background: #f9a631;
    color: #000;
    border: 1px solid #003B2F;
}

.header-actions .btn-primary:hover {
    background: rgba(0, 59, 47, 0.9);
    color: #03FC9D;
    border-color: rgba(0, 59, 47, 0.9);
}

.btn-link {
    color: var(--text-primary);
    font-weight: 500;
    padding: var(--spacing-xs) 0;
    border-bottom: 2px solid transparent;
}

.btn-link:hover {
    border-bottom-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-primary {
    background: #03FC9D;
    color: #000000;
    padding: 8px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    transition: var(--transition);
    border: 1px solid #03FC9D;
    cursor: pointer;
    line-height: 1.4;
}

.btn-primary:hover {
    background: #02E08A;
    color: #000000;
    border-color: #02E08A;
    transform: translateY(-1px);
}

.btn-small {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
}

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

/* ========== Landing Page Sections (Design) ========== */
:root {
    --accent-cyan: #00D4FF;
    --accent-cyan-hover: #00b8e6;
    --accent-gradient: linear-gradient(135deg, #00D4FF 0%, #0099cc 100%);
}

/* Hero Section: Built by believers */
.hero-section {
    background: #000;
    padding: var(--spacing-3xl) var(--spacing-md);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

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

.hero-visual {
    position: relative;
}

.hero-phones {
    width: 100%;
    max-width: 480px;
    height: auto;
    object-fit: contain;
}

.hero-content {
    color: #fff;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero-desc {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* Join our mission */
.mission-section {
    background: #fff;
    padding: 5rem var(--spacing-md);
    text-align: center;
}

.mission-container {
    max-width: 640px;
    margin: 0 auto;
}

.mission-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.mission-desc {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-mission {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-gradient);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-mission:hover {
    background: var(--accent-cyan-hover);
    transform: translateY(-2px);
}

/* Our Executive Team */
.team-section {
    background: #fff;
    padding: 5rem var(--spacing-md);
}

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

.team-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 3rem;
}

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

.team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-avatar-wrap {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #f5f0e8;
    overflow: hidden;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.9375rem;
    color: #666;
    margin: 0;
}

/* Footer CTA: The trusted crypto-native finance platform */
.cta-section {
    background: #000;
    padding: 5rem var(--spacing-md);
    text-align: center;
}

.cta-container {
    max-width: 640px;
    margin: 0 auto;
}

.cta-icon-wrap {
    margin-bottom: 1.5rem;
}

.cta-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto;
    object-fit: contain;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-cyan);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
    background: var(--accent-cyan-hover);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #000;
    color: #ffffff;
    padding: 48px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.footer-main {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
}

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

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-visual {
        order: 1;
    }

    .hero-content {
        order: 2;
    }

    .hero-phones {
        margin: 0 auto;
    }

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

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 1.5rem;
    }

    .hero-container,
    .carousel-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .carousel-text h2 {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 24px;
    }
    
    .carousel-image {
        min-height: 300px;
    }
    
    .mobile-container,
    .trading-tools-container {
        grid-template-columns: 1fr;
    }

    .features-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .steps-container {
        flex-direction: column;
        gap: 40px;
    }

    .steps-header {
        gap: 24px;
    }

    .steps-header h2 {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 0;
    }

    .steps-list {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 0;
    }

    .footer-main {
        margin-bottom: 24px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 3rem var(--spacing-md);
    }

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

    .hero-desc {
        font-size: 1rem;
    }

    .mission-section,
    .team-section {
        padding: 3rem var(--spacing-md);
    }

    .mission-title,
    .team-title,
    .cta-title {
        font-size: 1.75rem;
    }

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

    .cta-section {
        padding: 3rem var(--spacing-md);
    }

    .cta-title {
        font-size: 1.5rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .nav {
        display: none;
    }

    .header-actions {
        gap: var(--spacing-sm);
    }

    .btn-primary {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }

    .carousel-section {
        padding: 40px 0;
    }

    .carousel-text h2 {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 20px;
    }

    .carousel-text p {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 20px;
    }

    .carousel-image {
        min-height: 250px;
    }

    .mobile-section {
        padding: 40px 0;
    }

    .mobile-text h2 {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 24px;
    }

    .mobile-text h4 {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 12px;
    }

    .mobile-image {
        min-height: 300px;
    }

    .trading-tools-section {
        padding: 80px 0;
    }

    .trading-tools-text h2 {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 24px;
    }

    .trading-tools-text h4 {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 12px;
    }

    .trading-tools-image {
        min-height: 300px;
    }

    .features-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-section {
        padding: 80px 0;
    }
    
    .feature-card h3 {
        font-size: 24px;
        line-height: 30px;
    }

    .gateway-section {
        padding: 80px 0;
    }

    .gateway-text h2 {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 32px;
    }

    .gateway-item h4 {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 12px;
    }

    .gateway-list {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .steps-section {
        padding: 80px 0;
    }

    .steps-header h2 {
        font-size: 32px;
        line-height: 40px;
    }

    .steps-list {
        gap: 40px;
        margin-top: 32px;
    }

    .step-number {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .step-item img {
        width: 80px;
        height: 80px;
        margin-bottom: 16px;
    }

    .step-content h3 {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 16px;
    }

    .footer-bottom {
        padding-top: 24px;
    }
}

