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

:root {
    --dark-blue: #0a1628;
    --darker-blue: #050a14;
    --green: #00d084;
    --green-dark: #00b875;
    --white: #ffffff;
    --text-light: #e0e0e0;
    --card-blue: #0f1f3a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--darker-blue) 100%);
    background-attachment: fixed;
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 208, 132, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 208, 132, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: liquidFlow 25s ease-in-out infinite;
}

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

/* Header */
.header {
    background: rgba(5, 10, 20, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.header:hover {
    background: rgba(5, 10, 20, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

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

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Space Grotesk', sans-serif;
}

.logo:hover .logo-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 208, 132, 0.4);
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.5px;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 5px 0;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--green), var(--green-dark));
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav a:hover::after {
    width: 100%;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 208, 132, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 208, 132, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--card-blue) 0%, #152a4a 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(15, 31, 58, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #152a4a 0%, #1a3a5a 100%);
    box-shadow: 0 8px 25px rgba(15, 31, 58, 0.4);
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

/* Hero Section */
.hero {
    padding: 80px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 208, 132, 0.1) 0%, transparent 70%);
    animation: liquidFlow 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes liquidFlow {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, 30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.banner {
    display: inline-block;
    background-color: var(--dark-blue);
    color: var(--green);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease-out, bannerPulse 3s ease-in-out infinite;
    border: 2px solid var(--green);
    letter-spacing: 0.02em;
    font-family: 'Inter', sans-serif;
}

@keyframes bannerPulse {
    0%, 100% {
        color: var(--green);
        border-color: var(--green);
        box-shadow: 0 0 10px rgba(0, 208, 132, 0.3);
    }
    50% {
        color: #00ffa0;
        border-color: #00ffa0;
        box-shadow: 0 0 20px rgba(0, 255, 160, 0.6);
    }
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.text-green {
    color: var(--green);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.01em;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 208, 132, 0.1), transparent);
    transition: left 0.6s;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(0, 208, 132, 0.05);
}

.stat-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--green);
    margin-bottom: 8px;
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--darker-blue);
    position: relative;
    overflow: hidden;
}

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

.feature-card {
    background: linear-gradient(135deg, var(--card-blue) 0%, #0a1f35 100%);
    padding: 32px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 208, 132, 0.1);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--green-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 208, 132, 0.2);
    border-color: rgba(0, 208, 132, 0.3);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    border-radius: 8px;
    margin-bottom: 24px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: float 3s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0, 208, 132, 0.4);
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.5px;
}

.feature-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Stack Section */
.stack {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -1px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    font-weight: 400;
    line-height: 1.7;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.stack-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
}

.connection-lines-svg {
    max-width: 1000px;
    width: 100%;
    display: block;
}

.stack-layer {
    background: linear-gradient(135deg, var(--card-blue) 0%, #0a1f35 100%);
    padding: 24px 32px;
    border-radius: 12px;
    text-align: center;
    width: 100%;
    max-width: 800px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.stack-layer:nth-child(1) {
    animation-delay: 0.2s;
}

.stack-layer:nth-child(3) {
    animation-delay: 0.4s;
}

.stack-layer:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 208, 132, 0.15);
}

.client-layer {
    background-color: var(--card-blue);
    width: auto;
    max-width: 600px;
    padding: 15px;
}

.core-layer {
    background: linear-gradient(to bottom, var(--green) 0%, var(--dark-blue) 100%);
    color: var(--dark-blue);
    padding: 40px 32px;
    box-shadow: 0 10px 30px rgba(0, 208, 132, 0.3);
    animation-delay: 0.3s;
    position: relative;
}

.core-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.core-header .logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.core-header .logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
}

.core-header .logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.5px;
}

.core-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.5px;
}

.core-layer:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 208, 132, 0.4);
}

.layer-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    opacity: 0.8;
    font-family: 'Space Grotesk', sans-serif;
}

.layer-content {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    font-family: 'Inter', sans-serif;
}

.core-layer .layer-label {
    color: var(--dark-blue);
}

.core-layer .layer-content {
    color: var(--dark-blue);
}

.core-content {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.core-item {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--green-dark) 0%, #008a5a 100%);
    padding: 12px 20px;
    border-radius: 8px;
}

.stack-arrow {
    font-size: 32px;
    color: var(--green);
    font-weight: bold;
    line-height: 1;
    animation: pulse 2s ease-in-out infinite;
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards, pulse 2s ease-in-out 1s infinite;
    position: relative;
}

.stack-arrow.dashed {
    font-size: 0;
    width: 2px;
    height: 40px;
    background: repeating-linear-gradient(
        to bottom,
        var(--green) 0,
        var(--green) 8px,
        transparent 8px,
        transparent 16px
    );
    border: none;
    margin: 10px 0;
    display: block;
    opacity: 1;
    animation: none;
}

.stack-integrations {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1000px;
    position: relative;
    margin-top: 0;
    z-index: 1;
}

.integration-item {
    background: linear-gradient(135deg, var(--card-blue) 0%, #0a1f35 100%);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 208, 132, 0.1);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    position: relative;
}

.integration-item-left::before,
.integration-item-right::before {
    display: none;
}

.integration-item-center::before {
    display: none;
}

.integration-item:nth-child(1) {
    animation-delay: 0.5s;
}

.integration-item:nth-child(2) {
    animation-delay: 0.6s;
}

.integration-item:nth-child(3) {
    animation-delay: 0.7s;
}

.integration-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 208, 132, 0.2);
    border-color: rgba(0, 208, 132, 0.3);
}

.integration-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--green);
    height: 50px;
}

.integration-icon img {
    max-width: 50px;
    max-height: 50px;
    object-fit: contain;
}

.integration-icon svg {
    width: 40px;
    height: 40px;
}

.integration-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.3px;
}

.integration-subtitle {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Developer Section */
.developer-section {
    padding: 100px 0;
    background-color: var(--darker-blue);
    position: relative;
    overflow: hidden;
}

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

.developer-text {
    opacity: 0;
    animation: slideInLeft 0.8s ease-out forwards;
}

.developer-text .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.developer-text .section-description {
    text-align: left;
    margin-bottom: 24px;
}

.code-snippet {
    opacity: 0;
    animation: slideInRight 0.8s ease-out 0.2s forwards;
}

.tag {
    display: inline-block;
    background-color: var(--green);
    color: var(--dark-blue);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.feature-list {
    list-style: none;
    margin-bottom: 32px;
}

.feature-list li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.feature-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--green);
    font-size: 20px;
}

.link {
    color: var(--green);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
}

.link::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.link:hover {
    color: var(--green-dark);
    transform: translateX(3px);
}

.link:hover::after {
    transform: translateX(5px);
}

.code-snippet {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 208, 132, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.code-snippet:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 208, 132, 0.2);
    border-color: rgba(0, 208, 132, 0.4);
}

.code-header {
    background-color: #252525;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.code-dots {
    display: flex;
    gap: 6px;
}

.code-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #555;
}

.code-dots span:nth-child(1) {
    background-color: #ff5f56;
}

.code-dots span:nth-child(2) {
    background-color: #ffbd2e;
}

.code-dots span:nth-child(3) {
    background-color: #27c93f;
}

.code-title {
    color: var(--text-light);
    font-size: 14px;
}

.code-snippet pre {
    margin: 0;
    padding: 24px;
    overflow-x: auto;
}

.code-snippet code {
    font-family: 'Courier New', 'Monaco', 'Menlo', 'Consolas', monospace;
    font-size: 14px;
    line-height: 1.8;
    color: #e0e0e0;
    display: block;
    white-space: pre;
    overflow-x: auto;
    position: relative;
    min-height: 200px;
    user-select: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.code-snippet code.typing-complete {
    position: relative;
}

.code-snippet code.typing-complete:hover {
    opacity: 0.8;
}

.code-snippet code.typing-complete::before {
    content: 'Click to replay';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 11px;
    color: var(--green);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.7);
    padding: 4px 8px;
    border-radius: 4px;
}

.code-snippet code.typing-complete:hover::before {
    opacity: 1;
}

.code-snippet code.typing {
    position: relative;
}

.code-snippet code.typing::after {
    content: '|';
    color: var(--green);
    animation: blink 1s infinite;
    margin-left: 2px;
    font-weight: bold;
}

.code-snippet code.typing-complete::after {
    display: none;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.code-snippet code .keyword {
    color: #c792ea;
}

.code-snippet code .string {
    color: #c3e88d;
}

.code-snippet code .number {
    color: #f78c6c;
}

/* Liquidity Provider Section */
.liquidity-provider {
    padding: 100px 0;
}

.lp-content {
    background: linear-gradient(135deg, var(--card-blue) 0%, #0a1f35 100%);
    color: var(--white);
    padding: 60px;
    border-radius: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    border: 1px solid rgba(0, 208, 132, 0.1);
}

.lp-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 208, 132, 0.05) 0%, transparent 70%);
    animation: liquidFlow 15s ease-in-out infinite;
    pointer-events: none;
}

.lp-text .section-title {
    color: var(--white);
    text-align: left;
    margin-bottom: 20px;
}

.lp-text .section-description {
    color: var(--text-light);
    text-align: left;
    margin-bottom: 32px;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.lp-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 32px;
}

.lp-stat {
    text-align: left;
}

.lp-stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.lp-stat-label {
    font-size: 14px;
    color: var(--darker-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    line-height: 1.8;
}

.lp-content .btn-secondary {
    background-color: var(--dark-blue);
    color: var(--white);
}

.lp-content .btn-secondary:hover {
    background-color: var(--darker-blue);
}

.order-book {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--darker-blue) 100%);
    border-radius: 12px;
    padding: 24px;
    color: var(--white);
    border: 1px solid rgba(0, 208, 132, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.order-book:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 208, 132, 0.2);
    border-color: rgba(0, 208, 132, 0.4);
}

.order-book-header {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--green);
    font-family: 'Space Grotesk', sans-serif;
    animation: pulse 2s ease-in-out infinite;
}

.order-table {
    width: 100%;
    border-collapse: collapse;
}

.order-table thead {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.order-table th {
    text-align: left;
    padding: 12px 0;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    font-family: 'Space Grotesk', sans-serif;
}

.order-table td {
    padding: 16px 0;
    font-size: 16px;
    color: var(--white);
    font-weight: 500;
    letter-spacing: 0.01em;
}

.order-table tbody {
    position: relative;
    max-height: 300px;
    overflow: hidden;
}

.order-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.order-table tbody tr:hover {
    background: rgba(0, 208, 132, 0.1);
    transform: translateX(5px);
}

.order-table tbody tr:last-child {
    border-bottom: none;
}

.order-table tbody tr.slide-in {
    animation: slideInFromRight 0.5s ease-out;
}

.order-table tbody tr.scroll-up {
    animation: scrollUp 0.3s ease-out forwards;
    opacity: 0;
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes scrollUp {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-60px);
        opacity: 0;
    }
}

/* Security Section */
.security {
    padding: 100px 0;
    background-color: var(--darker-blue);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.security-card {
    background: linear-gradient(135deg, var(--card-blue) 0%, #0a1f35 100%);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 208, 132, 0.1);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.security-card:nth-child(1) {
    animation-delay: 0.1s;
}

.security-card:nth-child(2) {
    animation-delay: 0.2s;
}

.security-card:nth-child(3) {
    animation-delay: 0.3s;
}

.security-card:nth-child(4) {
    animation-delay: 0.4s;
}

.security-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 208, 132, 0.2);
    border-color: rgba(0, 208, 132, 0.3);
}

.security-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.security-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    border-radius: 12px;
    color: var(--white);
    flex-shrink: 0;
    margin-bottom: 0;
}

.security-icon svg {
    width: 32px;
    height: 32px;
}

.security-subtitle {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 208, 132, 0.1) 0%, transparent 70%);
    animation: liquidFlow 20s ease-in-out infinite;
    pointer-events: none;
}

.cta-section .section-title,
.cta-section .section-subtitle {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.cta-section .section-subtitle {
    animation-delay: 0.2s;
}

.cta-buttons {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
}

/* Footer */
.footer {
    background-color: var(--darker-blue);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin-top: 16px;
    font-weight: 400;
    letter-spacing: 0.01em;
}

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

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.3px;
}

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

.footer-column a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.footer-column a:hover {
    color: var(--white);
}

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

.copyright {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: 0.01em;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.footer-legal a:hover {
    color: var(--white);
}

/* Infrastructure Section */
.infrastructure-section {
    padding: 100px 0;
    background-color: var(--darker-blue);
}

.infrastructure-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.infrastructure-card {
    background: linear-gradient(135deg, var(--card-blue) 0%, #0a1f35 100%);
    padding: 32px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 208, 132, 0.1);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.infrastructure-card:nth-child(1) {
    animation-delay: 0.1s;
}

.infrastructure-card:nth-child(2) {
    animation-delay: 0.2s;
}

.infrastructure-card:nth-child(3) {
    animation-delay: 0.3s;
}

.infrastructure-card:nth-child(4) {
    animation-delay: 0.4s;
}

.infrastructure-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 208, 132, 0.2);
    border-color: rgba(0, 208, 132, 0.3);
}

.infrastructure-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
}

.infrastructure-icon-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.infrastructure-icon-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.infrastructure-icon-green {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
}

.infrastructure-icon-red {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.infrastructure-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.3px;
}

.infrastructure-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Settlement Flow Section */
.settlement-flow {
    padding: 100px 0;
    position: relative;
}

.settlement-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.settlement-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step-item {
    display: flex;
    gap: 20px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.step-item:nth-child(1) {
    animation-delay: 0.1s;
}

.step-item:nth-child(2) {
    animation-delay: 0.2s;
}

.step-item:nth-child(3) {
    animation-delay: 0.3s;
}

.step-item:nth-child(4) {
    animation-delay: 0.4s;
}

.step-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-item:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0, 208, 132, 0.4);
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.3px;
}

.step-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.api-example-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 208, 132, 0.2);
    opacity: 0;
    animation: slideInRight 0.8s ease-out 0.3s forwards;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.api-example-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 208, 132, 0.2);
    border-color: rgba(0, 208, 132, 0.4);
}

.api-example-box pre {
    margin: 0;
    padding: 24px;
    overflow-x: auto;
}

.api-example-box code {
    font-family: 'Courier New', 'Monaco', 'Menlo', 'Consolas', monospace;
    font-size: 14px;
    line-height: 1.8;
    color: #e0e0e0;
    display: block;
    white-space: pre;
    position: relative;
    min-height: 200px;
    user-select: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.api-example-box code.typing {
    position: relative;
}

.api-example-box code.typing::after {
    content: '|';
    color: var(--green);
    animation: blink 1s infinite;
    margin-left: 2px;
    font-weight: bold;
}

.api-example-box code.typing-complete {
    position: relative;
}

.api-example-box code.typing-complete:hover {
    opacity: 0.8;
}

.api-example-box code.typing-complete::before {
    content: 'Click to replay';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 11px;
    color: var(--green);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.7);
    padding: 4px 8px;
    border-radius: 4px;
}

.api-example-box code.typing-complete:hover::before {
    opacity: 1;
}

.api-example-box code.typing-complete::after {
    display: none;
}

/* Money Movers Section */
.money-movers {
    padding: 100px 0;
    background-color: var(--darker-blue);
}

.movers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.mover-card {
    background: linear-gradient(135deg, var(--card-blue) 0%, #0a1f35 100%);
    padding: 32px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 208, 132, 0.1);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.mover-card:nth-child(1) {
    animation-delay: 0.1s;
}

.mover-card:nth-child(2) {
    animation-delay: 0.2s;
}

.mover-card:nth-child(3) {
    animation-delay: 0.3s;
}

.mover-card:nth-child(4) {
    animation-delay: 0.4s;
}

.mover-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 208, 132, 0.2);
    border-color: rgba(0, 208, 132, 0.3);
}

.mover-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
}

.mover-icon-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.mover-icon-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.mover-icon-green {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
}

.mover-icon-orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.mover-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.3px;
}

.mover-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Rails Section */
.rails-section {
    padding: 100px 0;
    position: relative;
}

.rails-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.rails-column {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.rails-column:nth-child(1) {
    animation-delay: 0.1s;
}

.rails-column:nth-child(2) {
    animation-delay: 0.2s;
}

.rails-heading {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.5px;
}

.rail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    padding: 20px;
    background: linear-gradient(135deg, var(--card-blue) 0%, #0a1f35 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 208, 132, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.rail-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 208, 132, 0.15);
    border-color: rgba(0, 208, 132, 0.3);
}

.rail-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.rail-icon-green {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
}

.rail-icon-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.rail-icon-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.rail-content {
    flex: 1;
}

.rail-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.3px;
}

.rail-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.rails-banner {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: var(--dark-blue);
    padding: 20px 32px;
    border-radius: 12px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    margin-top: 40px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

/* Rates Table Section */
.rates-table-container {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--darker-blue) 100%);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(0, 208, 132, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.rates-table-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 208, 132, 0.2);
    border-color: rgba(0, 208, 132, 0.4);
}

.rates-table tbody {
    position: relative;
    max-height: 300px;
    overflow: hidden;
}

.rates-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.rates-table tbody tr:hover {
    background: rgba(0, 208, 132, 0.1);
    transform: translateX(5px);
}

.rates-table tbody tr:last-child {
    border-bottom: none;
}

.rates-table tbody tr.slide-in {
    animation: slideInFromRight 0.5s ease-out;
}

.rates-table tbody tr.scroll-up {
    animation: scrollUp 0.3s ease-out forwards;
    opacity: 0;
}

.rates-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rate-tab {
    background: transparent;
    border: none;
    color: var(--text-light);
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    font-family: 'Inter', sans-serif;
}

.rate-tab.active {
    color: var(--green);
    border-bottom-color: var(--green);
}

.rate-tab:hover {
    color: var(--white);
}

.rates-table {
    width: 100%;
    border-collapse: collapse;
}

.rates-table thead {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rates-table th {
    text-align: left;
    padding: 12px 0;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    font-family: 'Space Grotesk', sans-serif;
}

.rates-table td {
    padding: 16px 0;
    font-size: 16px;
    color: var(--white);
    font-weight: 500;
    letter-spacing: 0.01em;
}

.rates-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.rates-table tbody tr:hover {
    background: rgba(0, 208, 132, 0.1);
    transform: translateX(5px);
}

.rates-table tbody tr:last-child {
    border-bottom: none;
}

/* Roadmap Section */
.roadmap-section {
    padding: 100px 0;
    background-color: var(--darker-blue);
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.roadmap-card {
    background: linear-gradient(135deg, var(--card-blue) 0%, #0a1f35 100%);
    padding: 32px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 208, 132, 0.1);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.roadmap-card:nth-child(1) {
    animation-delay: 0.1s;
}

.roadmap-card:nth-child(2) {
    animation-delay: 0.2s;
}

.roadmap-card:nth-child(3) {
    animation-delay: 0.3s;
}

.roadmap-card:nth-child(4) {
    animation-delay: 0.4s;
}

.roadmap-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 208, 132, 0.2);
    border-color: rgba(0, 208, 132, 0.3);
}

.roadmap-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
}

.roadmap-icon-green {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
}

.roadmap-icon-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.roadmap-icon-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.roadmap-icon-orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.roadmap-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.3px;
}

.roadmap-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Code Tabs */
.code-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.code-tab {
    background: transparent;
    border: none;
    color: var(--text-light);
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    font-family: 'Inter', sans-serif;
}

.code-tab.active {
    color: var(--green);
    border-bottom-color: var(--green);
}

.code-tab:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.3s ease-out;
}

.tab-content.active {
    display: block;
}

/* Playground Styles */
.playground-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 24px;
}

.playground-request,
.playground-response {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.playground-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.playground-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Space Grotesk', sans-serif;
}

.playground-method {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: var(--white);
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.playground-method:hover {
    background: rgba(255, 255, 255, 0.15);
}

.playground-url {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--white);
    padding: 8px 12px;
    font-size: 13px;
    font-family: 'Courier New', 'Monaco', 'Menlo', 'Consolas', monospace;
    transition: all 0.3s ease;
}

.playground-url:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 2px rgba(0, 208, 132, 0.2);
}

.playground-send-btn {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    border: none;
    border-radius: 4px;
    color: var(--white);
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.playground-send-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 208, 132, 0.3);
}

.playground-body {
    padding: 16px;
}

.playground-textarea {
    width: 100%;
    min-height: 150px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--white);
    padding: 12px;
    font-size: 13px;
    font-family: 'Courier New', 'Monaco', 'Menlo', 'Consolas', monospace;
    line-height: 1.6;
    resize: vertical;
    transition: all 0.3s ease;
}

.playground-textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 2px rgba(0, 208, 132, 0.2);
}

.playground-status {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.5px;
}

.playground-status.success {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: var(--white);
}

.playground-code {
    font-family: 'Courier New', 'Monaco', 'Menlo', 'Consolas', monospace;
    font-size: 13px;
    line-height: 1.8;
    color: #e0e0e0;
    margin: 0;
}

/* Reference Styles */
.reference-container {
    padding: 24px;
    max-height: 500px;
    overflow-y: auto;
}

.reference-section {
    margin-bottom: 32px;
}

.reference-section:last-child {
    margin-bottom: 0;
}

.reference-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.3px;
}

.reference-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 12px;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.reference-code {
    display: inline-block;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 8px 12px;
    font-family: 'Courier New', 'Monaco', 'Menlo', 'Consolas', monospace;
    font-size: 13px;
    color: var(--green);
    margin: 8px 0;
    word-break: break-all;
}

.reference-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.reference-list li {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.reference-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--green);
    font-size: 16px;
}

.reference-table {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.reference-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.reference-row:hover {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 208, 132, 0.2);
}

.reference-row .reference-code {
    min-width: 60px;
    text-align: center;
    margin: 0;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: var(--white);
    font-weight: 600;
}

.reference-desc {
    font-size: 13px;
    color: var(--text-light);
    flex: 1;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.developer-subtitle {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.5px;
}

.code-endpoints {
    padding: 20px 24px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.endpoint-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.endpoint-item:last-child {
    border-bottom: none;
}

.endpoint-item:nth-child(1) {
    animation-delay: 0.1s;
}

.endpoint-item:nth-child(2) {
    animation-delay: 0.2s;
}

.endpoint-item:nth-child(3) {
    animation-delay: 0.3s;
}

.endpoint-method {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.5px;
    min-width: 60px;
    text-align: center;
}

.endpoint-item:nth-child(1) .endpoint-method {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: var(--white);
}

.endpoint-item:nth-child(2) .endpoint-method,
.endpoint-item:nth-child(3) .endpoint-method {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: var(--white);
}

.endpoint-path {
    font-family: 'Courier New', 'Monaco', 'Menlo', 'Consolas', monospace;
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-title {
        font-size: 42px;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

    .developer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lp-content {
        grid-template-columns: 1fr;
        padding: 40px 30px;
        gap: 40px;
    }

    .stack-integrations {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .connection-lines-svg {
        display: none;
    }

    .stack-layer {
        max-width: 100%;
        padding: 20px;
    }

    .core-layer {
        padding: 30px 20px;
    }

    .core-content {
        flex-direction: column;
        gap: 12px;
    }

    .core-item {
        width: 100%;
        text-align: center;
    }

    .security-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .infrastructure-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .movers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .roadmap-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .settlement-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .rails-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .nav {
        display: none;
    }

    .order-book {
        overflow-x: auto;
    }

    .order-table {
        min-width: 300px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 60px 0 80px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stat-value {
        font-size: 28px;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .features {
        padding: 60px 0;
    }

    .feature-card {
        padding: 24px;
    }

    .stack {
        padding: 60px 0;
    }

    .stack-layer {
        padding: 20px 15px;
    }

    .core-header {
        flex-direction: column;
        gap: 8px;
    }

    .core-header .logo-text,
    .core-text {
        font-size: 20px;
    }

    .core-header .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 20px;
    }

    .developer-section {
        padding: 60px 0;
    }

    .code-snippet {
        overflow-x: auto;
    }

    .code-snippet code {
        font-size: 12px;
        min-height: 150px;
    }

    .playground-container {
        padding: 16px;
    }

    .playground-header {
        flex-wrap: wrap;
        gap: 8px;
    }

    .playground-url {
        min-width: 100%;
        order: 3;
    }

    .playground-send-btn {
        width: 100%;
        order: 4;
    }

    .reference-container {
        padding: 16px;
        max-height: 400px;
    }

    .reference-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .liquidity-provider {
        padding: 60px 0;
    }

    .lp-content {
        padding: 30px 20px;
    }

    .lp-stats {
        flex-direction: column;
        gap: 20px;
    }

    .security {
        padding: 60px 0;
    }

    .security-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .security-card {
        padding: 24px;
    }

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

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

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

    .settlement-content {
        grid-template-columns: 1fr;
    }

    .rails-content {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 60px 0;
    }

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

    .cta-buttons .btn {
        width: 100%;
    }

    .footer {
        padding: 40px 0 20px;
    }

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

    .footer-legal {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .banner {
        font-size: 12px;
        padding: 6px 12px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .container {
        padding: 0 15px;
    }

    .early-access-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .early-access-title {
        font-size: 32px;
    }

    .docs-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .docs-sidebar {
        position: relative;
        top: 0;
        max-height: none;
    }

    .api-docs-title {
        font-size: 32px;
    }

    .docs-section-title {
        font-size: 28px;
    }

    .docs-subsection-title {
        font-size: 20px;
    }
}

/* Early Access Page Styles */
.early-access-section {
    padding: 100px 0;
    min-height: calc(100vh - 200px);
}

.early-access-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.early-access-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -1px;
    line-height: 1.2;
}

.early-access-subtitle {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: linear-gradient(135deg, var(--card-blue) 0%, #0a1f35 100%);
    border-radius: 8px;
    border: 1px solid rgba(0, 208, 132, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
    border-color: rgba(0, 208, 132, 0.3);
    box-shadow: 0 5px 15px rgba(0, 208, 132, 0.1);
}

.benefit-item svg {
    color: var(--green);
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 16px;
    color: var(--white);
    font-weight: 500;
}

.early-access-form-container {
    background: linear-gradient(135deg, var(--card-blue) 0%, #0a1f35 100%);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(0, 208, 132, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.early-access-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--white);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(0, 208, 132, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.6;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--dark-blue);
    color: var(--white);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-light);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--green);
}

.btn-full {
    width: 100%;
    padding: 16px;
    font-size: 16px;
}

.form-footer {
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    line-height: 1.6;
}

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

.form-footer a:hover {
    color: var(--green-dark);
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.form-success h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    font-family: 'Space Grotesk', sans-serif;
}

.form-success p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 12px;
}

/* API Docs Page Styles */
.api-docs-hero {
    padding: 80px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, var(--darker-blue) 0%, var(--dark-blue) 100%);
}

.api-docs-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -1px;
}

.api-docs-subtitle {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.api-docs-content {
    padding: 60px 0 100px;
}

.docs-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.docs-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.docs-nav {
    background: linear-gradient(135deg, var(--card-blue) 0%, #0a1f35 100%);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(0, 208, 132, 0.1);
}

.docs-nav-section {
    margin-bottom: 32px;
}

.docs-nav-section:last-child {
    margin-bottom: 0;
}

.docs-nav-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    font-family: 'Space Grotesk', sans-serif;
}

.docs-nav-link {
    display: block;
    padding: 10px 12px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-bottom: 4px;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.docs-nav-link:hover,
.docs-nav-link.active {
    background: rgba(0, 208, 132, 0.1);
    color: var(--green);
}

.docs-main {
    max-width: 800px;
}

.docs-section {
    margin-bottom: 80px;
    scroll-margin-top: 100px;
}

.docs-section:last-child {
    margin-bottom: 0;
}

.docs-section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.5px;
}

.docs-subsection-title {
    font-size: 24px;
    font-weight: 700;
    margin: 32px 0 16px;
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.3px;
}

.docs-section-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.code-block {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 208, 132, 0.2);
    margin: 24px 0;
}

.code-block pre {
    margin: 0;
    padding: 20px;
    overflow-x: auto;
}

.code-block code {
    font-family: 'Courier New', 'Monaco', 'Menlo', 'Consolas', monospace;
    font-size: 14px;
    line-height: 1.8;
    color: #e0e0e0;
    display: block;
    white-space: pre;
}

.info-box {
    background: rgba(0, 208, 132, 0.1);
    border-left: 3px solid var(--green);
    padding: 16px 20px;
    border-radius: 6px;
    margin: 24px 0;
}

.info-box strong {
    color: var(--green);
    font-weight: 600;
}

.info-box p {
    color: var(--text-light);
    margin: 8px 0 0;
    font-size: 14px;
    line-height: 1.6;
}

.endpoint-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
    padding: 8px 16px;
    background: rgba(0, 208, 132, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(0, 208, 132, 0.2);
}

.rate-limits-table,
.error-codes-table {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0;
}

.rate-limit-row,
.error-code-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px;
    background: linear-gradient(135deg, var(--card-blue) 0%, #0a1f35 100%);
    border-radius: 8px;
    border: 1px solid rgba(0, 208, 132, 0.1);
    transition: all 0.3s ease;
}

.rate-limit-row:hover,
.error-code-row:hover {
    border-color: rgba(0, 208, 132, 0.3);
    transform: translateX(5px);
}

.rate-limit-plan,
.error-code {
    min-width: 120px;
    font-weight: 700;
    color: var(--green);
    font-family: 'Space Grotesk', sans-serif;
}

.rate-limit-value {
    font-size: 16px;
    color: var(--white);
    font-weight: 500;
}

.error-details {
    flex: 1;
}

.error-details strong {
    display: block;
    font-size: 16px;
    color: var(--white);
    margin-bottom: 4px;
    font-weight: 600;
}

.error-details p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 968px) {
    .early-access-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .docs-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .docs-sidebar {
        position: relative;
        top: 0;
        max-height: none;
    }

    .docs-nav {
        position: sticky;
        top: 80px;
    }
}

/* About Page Styles */
.about-hero {
    padding: 80px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, var(--darker-blue) 0%, var(--dark-blue) 100%);
}

.about-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -1px;
    line-height: 1.2;
}

.about-subtitle {
    font-size: 20px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.about-section {
    padding: 100px 0;
}

.about-content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.about-content-item {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--card-blue) 0%, #0a1f35 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 208, 132, 0.1);
    transition: all 0.4s ease;
}

.about-content-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 208, 132, 0.2);
    border-color: rgba(0, 208, 132, 0.3);
}

.about-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.about-content-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.5px;
}

.about-content-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.about-story {
    padding: 100px 0;
    background-color: var(--darker-blue);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-text {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.9;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.story-text p {
    margin-bottom: 24px;
}

.about-team {
    padding: 100px 0;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 60px auto 0;
}

.team-stat {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--card-blue) 0%, #0a1f35 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 208, 132, 0.1);
}

.team-stat-value {
    font-size: 48px;
    font-weight: 800;
    color: var(--green);
    margin-bottom: 12px;
    font-family: 'Space Grotesk', sans-serif;
}

.team-stat-label {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
}

/* Corridors Page Styles */
.corridors-hero {
    padding: 80px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, var(--darker-blue) 0%, var(--dark-blue) 100%);
}

.corridors-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -1px;
}

.corridors-subtitle {
    font-size: 20px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.corridors-map-section {
    padding: 100px 0;
}

.corridors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.corridor-card {
    background: linear-gradient(135deg, var(--card-blue) 0%, #0a1f35 100%);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(0, 208, 132, 0.1);
    transition: all 0.4s ease;
}

.corridor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 208, 132, 0.2);
    border-color: rgba(0, 208, 132, 0.3);
}

.corridor-flag {
    font-size: 48px;
    margin-bottom: 16px;
}

.corridor-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.5px;
}

.corridor-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.corridor-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.corridor-detail-item:last-child {
    border-bottom: none;
}

.corridor-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.corridor-value {
    font-size: 14px;
    color: var(--white);
    font-weight: 600;
    text-align: right;
}

.corridors-coming-soon {
    padding: 100px 0;
    background-color: var(--darker-blue);
}

.coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.coming-soon-item {
    padding: 24px;
    background: linear-gradient(135deg, var(--card-blue) 0%, #0a1f35 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 208, 132, 0.1);
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.coming-soon-item:hover {
    border-color: rgba(0, 208, 132, 0.3);
    color: var(--white);
}

/* Demo Request Page Styles */
.demo-request-section {
    padding: 100px 0;
    min-height: calc(100vh - 200px);
}

.demo-request-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.demo-request-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -1px;
    line-height: 1.2;
}

.demo-request-subtitle {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.demo-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.demo-benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: linear-gradient(135deg, var(--card-blue) 0%, #0a1f35 100%);
    border-radius: 8px;
    border: 1px solid rgba(0, 208, 132, 0.1);
    transition: all 0.3s ease;
}

.demo-benefit-item:hover {
    transform: translateX(5px);
    border-color: rgba(0, 208, 132, 0.3);
    box-shadow: 0 5px 15px rgba(0, 208, 132, 0.1);
}

.demo-benefit-item svg {
    color: var(--green);
    flex-shrink: 0;
}

.demo-benefit-item span {
    font-size: 16px;
    color: var(--white);
    font-weight: 500;
}

.demo-form-container {
    background: linear-gradient(135deg, var(--card-blue) 0%, #0a1f35 100%);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(0, 208, 132, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.demo-request-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Liquidity Partner Page Styles */
.liquidity-partner-hero {
    padding: 80px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, var(--darker-blue) 0%, var(--dark-blue) 100%);
}

.liquidity-partner-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -1px;
}

.liquidity-partner-subtitle {
    font-size: 20px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.liquidity-benefits {
    padding: 100px 0;
}

.liquidity-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.liquidity-benefit-card {
    background: linear-gradient(135deg, var(--card-blue) 0%, #0a1f35 100%);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(0, 208, 132, 0.1);
    transition: all 0.4s ease;
}

.liquidity-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 208, 132, 0.2);
    border-color: rgba(0, 208, 132, 0.3);
}

.liquidity-benefit-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.liquidity-benefit-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.3px;
}

.liquidity-benefit-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.liquidity-requirements {
    padding: 100px 0;
    background-color: var(--darker-blue);
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.requirement-item {
    display: flex;
    gap: 20px;
    padding: 32px;
    background: linear-gradient(135deg, var(--card-blue) 0%, #0a1f35 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 208, 132, 0.1);
    transition: all 0.4s ease;
}

.requirement-item:hover {
    transform: translateX(5px);
    border-color: rgba(0, 208, 132, 0.3);
    box-shadow: 0 10px 30px rgba(0, 208, 132, 0.15);
}

.requirement-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.requirement-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.3px;
}

.requirement-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.liquidity-application {
    padding: 100px 0;
}

.application-container {
    max-width: 900px;
    margin: 60px auto 0;
    background: linear-gradient(135deg, var(--card-blue) 0%, #0a1f35 100%);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(0, 208, 132, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.liquidity-application-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* Responsive for new pages */
@media (max-width: 968px) {
    .about-content-grid {
        grid-template-columns: 1fr;
    }

    .team-stats {
        grid-template-columns: 1fr;
    }

    .corridors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .coming-soon-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .demo-request-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .liquidity-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .about-title,
    .corridors-title,
    .liquidity-partner-title {
        font-size: 32px;
    }

    .corridors-grid,
    .coming-soon-grid,
    .liquidity-benefits-grid {
        grid-template-columns: 1fr;
    }

    .demo-request-title {
        font-size: 32px;
    }
}

