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

body {
    font-family: 'Inter', sans-serif;
    background: #000000;
    color: #ffffff;
    overflow-x: hidden;
}

/* Full Page Background */
.full-page-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.75) 100%);
    z-index: 1;
}

/* Progress Bar */
.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1001;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ffffff, #888888);
    transition: width 0.2s ease;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    background: transparent;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: transparent;
    padding: 20px 0;
}

.header.hidden {
    transform: translateY(-100%);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #aaaaaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    flex-shrink: 0;
}

.right-side {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-left: auto;
}

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

.nav-item {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    padding: 8px 0;
    transition: opacity 0.2s;
}

.nav-item:hover {
    opacity: 0.7;
}

.connect-btn {
    background: transparent;
    border: 1px solid #ffffff;
    border-radius: 4px;
    color: #ffffff;
    padding: 8px 24px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    text-decoration: none;
    flex-shrink: 0;
}

.connect-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    .right-side {
        gap: 15px;
    }
    .nav {
        gap: 15px;
    }
    .nav-item {
        font-size: 11px;
    }
    .connect-btn {
        padding: 5px 12px;
        font-size: 10px;
    }
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
}

.hero-left {
    text-align: left;
}

@media (max-width: 968px) {
    .hero-left {
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff, #aaaaaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 32px;
    max-width: 500px;
}

@media (max-width: 968px) {
    .hero-description {
        max-width: 100%;
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.join-network-btn {
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.join-network-btn:hover {
    background: #e5e5e5;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 4px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Hero Image Container */
.hero-image-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.hero-dashboard-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    display: block;
}

@media (max-width: 768px) {
    .hero-image-container {
        max-width: 100%;
        margin-top: 30px;
    }
}

/* Capabilities Section */
.capabilities-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 32px;
    }
}

.section-header p {
    font-size: 18px;
    color: #aaaaaa;
}

.capability-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.capability-row.reverse {
    direction: rtl;
}

.capability-row.reverse .capability-info {
    direction: ltr;
}

@media (max-width: 968px) {
    .capability-row {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .capability-row.reverse {
        direction: ltr;
    }
}

.capability-image {
    text-align: center;
}

.capability-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.capability-info h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.capability-info p {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 24px;
    line-height: 1.6;
}

.capability-info ul {
    list-style: none;
}

.capability-info li {
    padding: 8px 0;
    font-size: 15px;
    color: #dddddd;
    display: flex;
    align-items: center;
    gap: 12px;
}

@media (max-width: 968px) {
    .capability-info li {
        justify-content: center;
    }
}

.capability-info li i {
    font-size: 14px;
    color: #ffffff;
}

/* Roles Section */
.roles-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 968px) {
    .roles-grid {
        grid-template-columns: 1fr;
    }
}

.role-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.role-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.role-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.role-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.role-card ul {
    list-style: none;
}

.role-card li {
    padding: 8px 0;
    font-size: 14px;
    color: #cccccc;
    display: flex;
    align-items: center;
    gap: 10px;
}

.role-card li i {
    font-size: 12px;
    color: #4ade80;
    width: 16px;
}

/* Workflow Section */
.workflow-section {
    padding: 80px 0;
}

.workflow-container {
    overflow-x: auto;
    padding: 20px 0;
}

.workflow-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 768px) {
    .workflow-steps {
        flex-direction: column;
    }
    .step-arrow {
        transform: rotate(90deg);
    }
}

.step {
    text-align: center;
    min-width: 80px;
}

.step-num {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.step span {
    font-size: 13px;
    font-weight: 500;
    color: #cccccc;
}

.step-arrow {
    font-size: 24px;
    color: #ffffff;
    opacity: 0.5;
}

.workflow-note {
    text-align: center;
    margin-top: 40px;
    font-size: 16px;
    color: #aaaaaa;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.feature-item i {
    font-size: 20px;
    color: #4ade80;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
}

.cta-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 32px;
    padding: 60px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .cta-card {
        padding: 40px 24px;
    }
}

.cta-card h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

@media (max-width: 768px) {
    .cta-card h2 {
        font-size: 28px;
    }
}

.cta-card p {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 4px;
}

.btn-primary:hover {
    background: #e5e5e5;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: rgba(5, 5, 5, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0 16px;
}

.footer .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-brand h3 {
    font-size: 14px;
    font-weight: 600;
    background: linear-gradient(135deg, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 3px;
}

.footer-brand p {
    color: #6b7280;
    font-size: 9px;
    margin-bottom: 2px;
    line-height: 1.3;
}

.footer-brand .copyright {
    color: #4b5563;
    font-size: 8px;
    margin-bottom: 0;
}

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

.footer-links-center a {
    color: #6b7280;
    text-decoration: none;
    font-size: 10px;
    transition: color 0.2s;
}

.footer-links-center a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    .footer .container {
        padding: 0 24px;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    .footer-links-center {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.delay-1 {
    transition-delay: 100ms;
}

.delay-2 {
    transition-delay: 200ms;
}

.delay-3 {
    transition-delay: 300ms;
}

.delay-4 {
    transition-delay: 400ms;
}

.delay-5 {
    transition-delay: 500ms;
}

.delay-6 {
    transition-delay: 600ms;
}

.delay-7 {
    transition-delay: 700ms;
}

.delay-8 {
    transition-delay: 800ms;
}

.pulse-arrow {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: translateX(0);
    }
    50% {
        opacity: 1;
        transform: translateX(5px);
    }
}

.pulse {
    animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}
