body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #0a0a0a;
    color: #ffffff;
    min-height: 100vh;
}

header {
    background: #1a1a1a;
    color: #fff;
    padding: 2rem 0;
    border-bottom: 1px solid #333;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    color: #26a69a;
    letter-spacing: -0.02em;
}

.token-label {
    font-size: 1rem;
    color: #888;
    font-weight: 400;
    margin-left: 0.5rem;
}

.header-info {
    text-align: right;
}

.token-value {
    font-size: 2rem;
    font-weight: 700;
    color: #26a69a;
}

.token-desc {
    font-size: 0.9rem;
    color: #888;
    margin-top: 0.25rem;
}

.subtitle {
    max-width: 1200px;
    margin: 1rem auto 0;
    padding: 0 2rem;
    color: #888;
    font-size: 1.1rem;
    text-align: center;
}

nav {
    background: #1a1a1a;
    border-bottom: 1px solid #333;
    padding: 0;
}

nav ul {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 3rem;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

nav a:hover {
    background: #26a69a;
    color: #ffffff;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

section {
    background: #1a1a1a;
    margin-bottom: 3rem;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid #333;
}

section h2 {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: -0.02em;
}

section h3 {
    color: #26a69a;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 1px solid #333;
    text-align: center;
}

.hero-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.hero-content p {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* Token Specs */
.token-specs {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.spec-item {
    text-align: center;
    padding: 1rem;
}

.spec-value {
    font-size: 2rem;
    font-weight: 700;
    color: #26a69a;
    display: block;
    margin-bottom: 0.5rem;
}

.spec-label {
    color: #888;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    background: #252525;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
    text-align: center;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: #26a69a;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #26a69a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

.process-step h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.process-step p {
    color: #cccccc;
    line-height: 1.6;
}

/* Yield Info */
.yield-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.yield-main {
    text-align: center;
    padding: 2rem;
    background: #252525;
    border-radius: 12px;
    border: 2px solid #26a69a;
}

.yield-percentage {
    font-size: 4rem;
    font-weight: 700;
    color: #26a69a;
    line-height: 1;
}

.yield-description {
    color: #cccccc;
    margin-top: 0.5rem;
    font-size: 1.1rem;
}

.yield-details {
    display: flex;
    gap: 2rem;
}

.yield-stat {
    text-align: center;
    padding: 1rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: #26a69a;
    display: block;
}

.stat-label {
    color: #888;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.yield-explanation {
    background: #252525;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
    margin-top: 2rem;
}

.yield-explanation p {
    color: #cccccc;
    line-height: 1.6;
}

/* Security Grid */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.security-card {
    background: #252525;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
    transition: border-color 0.3s ease;
}

.security-card:hover {
    border-color: #26a69a;
}

.security-card h3 {
    color: #26a69a;
    margin-bottom: 1rem;
}

.security-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Transparency Content */
.transparency-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.transparency-item {
    background: #252525;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
}

.transparency-item h3 {
    color: #26a69a;
    margin-bottom: 1rem;
}

.transparency-item p {
    color: #cccccc;
    line-height: 1.6;
}

/* Product CTA */
.product-cta {
    background: linear-gradient(135deg, #26a69a 0%, #2c7d7d 100%);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    color: white;
}

.product-cta h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.product-cta p {
    color: #e8f5f5;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.token-status {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    display: inline-block;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

footer {
    text-align: center;
    padding: 2rem;
    background: #1a1a1a;
    color: #888;
    border-top: 1px solid #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .logo-section h1 {
        font-size: 2.2rem;
    }

    .token-value {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    nav ul {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }

    nav a {
        text-align: center;
        padding: 0.75rem 1rem;
    }

    main {
        padding: 2rem 1rem;
    }

    section {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }

    section h2 {
        font-size: 1.8rem;
    }

    .hero-content h2 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .token-specs {
        flex-direction: column;
        gap: 1.5rem;
    }

    .process-grid,
    .security-grid,
    .transparency-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .yield-info {
        flex-direction: column;
        gap: 2rem;
    }

    .yield-details {
        flex-direction: column;
        gap: 1rem;
    }

    .product-cta {
        padding: 2rem 1.5rem;
    }

    .product-cta h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 0 1rem;
    }

    .logo-section h1 {
        font-size: 2rem;
    }

    .token-value {
        font-size: 1.6rem;
    }

    .subtitle {
        font-size: 0.95rem;
    }

    nav ul {
        padding: 0.75rem 1rem;
        gap: 0.25rem;
    }

    nav a {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }

    main {
        padding: 1.5rem 1rem;
    }

    section {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }

    section h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    section h3 {
        font-size: 1.2rem;
    }

    .hero-content h2 {
        font-size: 1.9rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .spec-value {
        font-size: 1.8rem;
    }

    .yield-percentage {
        font-size: 3rem;
    }

    .process-step,
    .security-card,
    .transparency-item {
        padding: 1.5rem;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .product-cta {
        padding: 1.5rem 1rem;
    }

    .product-cta h3 {
        font-size: 1.4rem;
    }

    .token-status {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    footer {
        padding: 1.5rem 1rem;
        font-size: 0.9rem;
    }
}