/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    --primary-color: #d4af37; /* Gold instead of bright yellow */
    --primary-dark: #b8860b; /* Darker gold */
    --secondary-color: #1a365d; /* Dark blue for institutional feel */
    --secondary-light: #2c5282; /* Lighter blue */
    --accent-color: #718096; /* Silver/gray accent */
    --background: #0b0b0b;
    --card-bg: #151515;
    --text-color: #f8f8f8;
    --text-muted: #a3a3a3;
    --border-color: #333333;
    --transition: all 0.3s ease;
    --card-radius: 12px;
    --section-padding: 100px 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

.section-padding {
    padding: var(--section-padding);
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: -3.5px;
    left: -5px;
}

.section-divider::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    top: -3.5px;
    right: -5px;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 70px 0;
    }

    .section-header h2 {
        font-size: 28px;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.navbar {
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(11, 11, 11, 0.95);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 10px 15px;
    position: relative;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-dark .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 5px;
    left: 15px;
    transition: var(--transition);
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
    width: calc(100% - 30px);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, rgba(11, 11, 11, 0) 70%);
    z-index: -1;
}

.hero-content {
    text-align: center;
}

.token-icon {
    margin-bottom: 30px;
}

.token-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2), 0 5px 15px rgba(26, 54, 93, 0.1);
    position: relative;
}

.token-circle::after {
    content: '';
    position: absolute;
    width: 110px;
    height: 110px;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    opacity: 0.3;
}

.token-circle span {
    font-size: 36px;
    font-weight: 700;
    color: var(--background);
}

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.hero-content .lead {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-muted);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    font-size: 14px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--background);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--background);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--background);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(26, 54, 93, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--secondary-color);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 0 10px rgba(26, 54, 93, 0.2);
}

.mouse::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 44px;
    border: 1px solid var(--primary-color);
    border-radius: 22px;
    top: -4px;
    left: -3px;
    opacity: 0.3;
}

.wheel {
    width: 4px;
    height: 8px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content .lead {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .token-circle {
        width: 100px;
        height: 100px;
    }

    .token-circle span {
        font-size: 30px;
    }
}

/*--------------------------------------------------------------
# Whitepaper Section
--------------------------------------------------------------*/
.content-card {
    background-color: var(--card-bg);
    border-radius: var(--card-radius);
    padding: 30px;
    height: 100%;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(250, 204, 21, 0.3);
}

.content-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.content-card p {
    color: var(--text-muted);
    margin-bottom: 0;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.application-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.application-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.7;
}

.application-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.application-content p {
    font-size: 14px;
    margin-bottom: 0;
}

.token-distribution {
    margin-top: 30px;
}

.distribution-item {
    margin-bottom: 15px;
}

.distribution-bar {
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 4px;
    margin-bottom: 5px;
}

.distribution-label {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-muted);
}

.token-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-icon {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-right: 15px;
}

.feature-text {
    font-size: 14px;
    color: var(--text-muted);
}

.compliance-features {
    margin-top: 30px;
}

.compliance-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.compliance-icon {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-right: 15px;
}

.compliance-text {
    font-size: 14px;
    color: var(--text-muted);
}

.ecosystem-features {
    margin-top: 30px;
}

.ecosystem-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.ecosystem-icon {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-right: 15px;
}

.ecosystem-text {
    font-size: 14px;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .applications-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .content-card h3 {
        font-size: 20px;
    }

    .application-content h4 {
        font-size: 16px;
    }
}

/*--------------------------------------------------------------
# Use Cases Section
--------------------------------------------------------------*/
.use-cases-section {
    background-color: var(--background);
    position: relative;
}

.use-cases-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(26, 54, 93, 0.1) 0%, rgba(11, 11, 11, 0) 70%);
    z-index: -1;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 700px;
    margin: 20px auto 0;
}

.use-case-card {
    background-color: var(--card-bg);
    border-radius: var(--card-radius);
    padding: 30px;
    height: 100%;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

.use-case-card:hover::before {
    height: 100%;
}

.use-case-icon {
    margin-bottom: 20px;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(26, 54, 93, 0.2);
    position: relative;
}

.icon-circle::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
}

.use-case-icon-1, .use-case-icon-2, .use-case-icon-3, .use-case-icon-4, .use-case-icon-5 {
    width: 24px;
    height: 24px;
    background-color: var(--primary-color);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}

.use-case-icon-1 {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21 18v1c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2v1h-9c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h9zm-9-2h10V8H12v8zm4-2.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21 18v1c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2v1h-9c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h9zm-9-2h10V8H12v8zm4-2.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z'/%3E%3C/svg%3E");
}

.use-case-icon-2 {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19 14V6c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zm-9-1c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm13-6v11c0 1.1-.9 2-2 2H4v-2h17V7h2z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19 14V6c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zm-9-1c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm13-6v11c0 1.1-.9 2-2 2H4v-2h17V7h2z'/%3E%3C/svg%3E");
}

.use-case-icon-3 {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 10h3v7H4v-7zm6.5 0h3v7h-3v-7zm6.5 0h3v7h-3v-7zM2 19h10v3H2v-3zm10 0h10v3H12v-3zm-1-8v7H1V8h10v3zm2-3v7h10V8H13v3zM12 2h10v3H12V2zM2 2h10v3H2V2z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 10h3v7H4v-7zm6.5 0h3v7h-3v-7zm6.5 0h3v7h-3v-7zM2 19h10v3H2v-3zm10 0h10v3H12v-3zm-1-8v7H1V8h10v3zm2-3v7h10V8H13v3zM12 2h10v3H12V2zM2 2h10v3H2V2z'/%3E%3C/svg%3E");
}

.use-case-icon-4 {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 8h-3V4H3c-1.1 0-2 .9-2 2v11h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-3-4zM6 18.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm13.5-9l1.96 2.5H17V9.5h2.5zm-1.5 9c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 8h-3V4H3c-1.1 0-2 .9-2 2v11h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-3-4zM6 18.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm13.5-9l1.96 2.5H17V9.5h2.5zm-1.5 9c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z'/%3E%3C/svg%3E");
}

.use-case-icon-5 {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3.5 18.49l6-6.01 4 4L22 6.92l-1.41-1.41-7.09 7.97-4-4L2 16.99z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3.5 18.49l6-6.01 4 4L22 6.92l-1.41-1.41-7.09 7.97-4-4L2 16.99z'/%3E%3C/svg%3E");
}

.use-case-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.use-case-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 15px;
}

.use-case-features {
    margin-top: 20px;
}

.use-case-features .feature {
    background-color: rgba(26, 54, 93, 0.2);
    border-left: 3px solid var(--secondary-color);
    padding: 8px 15px;
    margin-bottom: 10px;
    border-radius: 0 4px 4px 0;
    font-size: 14px;
    color: var(--text-muted);
    transition: var(--transition);
}

.use-case-features .feature:hover {
    background-color: rgba(26, 54, 93, 0.3);
    transform: translateX(5px);
    color: var(--text-color);
}

@media (max-width: 768px) {
    .use-case-card {
        margin-bottom: 20px;
    }

    .use-case-card h3 {
        font-size: 20px;
    }
}


/*--------------------------------------------------------------
# Security Section
--------------------------------------------------------------*/
.security-section {
    background-color: var(--background);
    position: relative;
}

.security-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(26, 54, 93, 0.1) 0%, rgba(11, 11, 11, 0) 70%);
    z-index: -1;
}

.security-card {
    background-color: var(--card-bg);
    border-radius: var(--card-radius);
    padding: 30px;
    height: 100%;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.security-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(26, 54, 93, 0.3);
}

.security-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.security-icon {
    margin-right: 15px;
}

.security-header h3 {
    font-size: 22px;
    margin-bottom: 0;
    color: var(--primary-color);
}

.security-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 15px;
}

.security-icon-1, .security-icon-2, .security-icon-3 {
    width: 24px;
    height: 24px;
    background-color: var(--primary-color);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}

.security-icon-1 {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.8z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.8z'/%3E%3C/svg%3E");
}

.security-icon-2 {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 2h1.5v3l2-3h1.7l-2 3 2 3h-1.7l-2-3v3H12V5zM7 7.25h2.5V6.5H7V5h4v3.75H8.5v.75H11V11H7V7.25zM19 13l-6 6-4-4-4 4v-2.5l4-4 4 4 6-6V13z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 2h1.5v3l2-3h1.7l-2 3 2 3h-1.7l-2-3v3H12V5zM7 7.25h2.5V6.5H7V5h4v3.75H8.5v.75H11V11H7V7.25zM19 13l-6 6-4-4-4 4v-2.5l4-4 4 4 6-6V13z'/%3E%3C/svg%3E");
}

.security-icon-3 {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2 20h20v-4H2v4zm2-3h2v2H4v-2zM2 4v4h20V4H2zm4 3H4V5h2v2zm-4 7h20v-4H2v4zm2-3h2v2H4v-2z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2 20h20v-4H2v4zm2-3h2v2H4v-2zM2 4v4h20V4H2zm4 3H4V5h2v2zm-4 7h20v-4H2v4zm2-3h2v2H4v-2z'/%3E%3C/svg%3E");
}

.security-features {
    margin-bottom: 25px;
}

.security-feature {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.security-feature .feature-icon {
    width: 8px;
    height: 8px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    margin-right: 15px;
}

.security-feature .feature-text {
    font-size: 14px;
    color: var(--text-muted);
}

.security-metrics {
    display: flex;
    justify-content: space-around;
    margin-top: 25px;
    text-align: center;
}

.metric {
    padding: 15px;
    background-color: rgba(26, 54, 93, 0.1);
    border-radius: 8px;
    width: 45%;
}

.metric-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.metric-label {
    font-size: 12px;
    color: var(--text-muted);
}

.compliance-status {
    background-color: rgba(26, 54, 93, 0.1);
    border-radius: 8px;
    padding: 15px;
    margin-top: 25px;
}

.status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.status-item:last-child {
    border-bottom: none;
}

.status-label {
    font-size: 14px;
    color: var(--text-muted);
}

.status-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
}

.status-value.active {
    color: #10b981;
    position: relative;
    padding-left: 15px;
}

.status-value.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
}

.architecture-diagram {
    margin-top: 30px;
}

.diagram-layer {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    position: relative;
}

.layer-label {
    position: absolute;
    top: -10px;
    left: 20px;
    background-color: var(--secondary-color);
    color: var(--text-color);
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.layer-components {
    display: flex;
    justify-content: space-around;
    margin-top: 15px;
}

.component {
    background-color: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    padding: 10px 15px;
    font-size: 13px;
    color: var(--primary-color);
    text-align: center;
    width: 30%;
}

.layer-1 {
    border-color: var(--secondary-light);
}

.layer-2 {
    border-color: var(--primary-color);
}

.layer-3 {
    border-color: var(--accent-color);
}

@media (max-width: 768px) {
    .security-header {
        flex-direction: column;
        text-align: center;
    }

    .security-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .security-metrics {
        flex-direction: column;
    }

    .metric {
        width: 100%;
        margin-bottom: 15px;
    }

    .layer-components {
        flex-direction: column;
        align-items: center;
    }

    .component {
        width: 80%;
        margin-bottom: 10px;
    }
}

/*--------------------------------------------------------------
# Roadmap Section
--------------------------------------------------------------*/
.roadmap-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 40px;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--border-color);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.roadmap-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
}

.roadmap-item:nth-child(odd) {
    left: 0;
}

.roadmap-item:nth-child(even) {
    left: 50%;
}

.roadmap-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--card-bg);
    border: 3px solid var(--border-color);
    border-radius: 50%;
    top: 30px;
    z-index: 1;
    transition: var(--transition);
}

.roadmap-item.active::after {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(250, 204, 21, 0.5);
}

.roadmap-item:hover::after {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.roadmap-item:nth-child(odd)::after {
    right: -10px;
}

.roadmap-item:nth-child(even)::after {
    left: -10px;
}

.roadmap-content {
    background-color: var(--card-bg);
    border-radius: var(--card-radius);
    padding: 25px;
    position: relative;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.roadmap-item:hover .roadmap-content {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(250, 204, 21, 0.3);
}

.roadmap-date {
    display: inline-block;
    padding: 5px 15px;
    background-color: var(--primary-color);
    color: var(--background);
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
}

.roadmap-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.roadmap-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.roadmap-content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 14px;
}

.roadmap-content ul li::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
    left: 0;
    top: 8px;
}

@media (max-width: 768px) {
    .roadmap-timeline::before {
        left: 20px;
    }

    .roadmap-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
    }

    .roadmap-item:nth-child(even) {
        left: 0;
    }

    .roadmap-item::after {
        left: 11px !important;
        top: 30px;
    }

    .roadmap-content {
        padding: 20px;
    }

    .roadmap-content h3 {
        font-size: 18px;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    background-color: var(--card-bg);
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-brand .logo-text {
    font-size: 28px;
}

.footer-brand p {
    margin-top: 5px;
    color: var(--text-muted);
}

.footer-description {
    max-width: 400px;
    margin-bottom: 30px;
    color: var(--text-muted);
}

.footer-links h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    margin-top: 50px;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 14px;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom .text-md-end {
        text-align: center !important;
        margin-top: 10px;
    }
}

/*--------------------------------------------------------------
# Back to Top Button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--background);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(26, 54, 93, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.back-to-top::before {
    content: '';
    position: absolute;
    width: 46px;
    height: 46px;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    opacity: 0.3;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--background);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(26, 54, 93, 0.3);
}
