@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;700&display=swap');

:root {
    --bg-primary: #EAE7E1;
    --bg-secondary: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-tertiary: #666666;
    --border-color: #1a1a1a;
    --accent-green: #C4FF3F;
    --accent-green-dark: #a8d934;
    --header-bg: #1a1a1a;
    --header-text: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--header-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    color: var(--header-text);
    width: 69px;
    height: 35px;
    flex-shrink: 0;
}

.logo-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--header-text);
    letter-spacing: -0.01em;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--header-text);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9375rem;
    transition: opacity 0.2s ease;
}

.nav-link:hover {
    opacity: 0.7;
}

/* Main Content */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    padding: 4rem 2rem;
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 4rem;
    align-items: start;
}

/* Left Column */
.left-column {
    padding-right: 2rem;
}

.main-heading {
    margin-bottom: 2.5rem;
    line-height: 1.1;
}

.heading-primary {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
}

.heading-secondary {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    color: var(--text-secondary);
    letter-spacing: -0.01em;
    opacity: 0.6;
}

.token-info {
    margin-bottom: 3rem;
}

.token-info p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-primary);
    max-width: 600px;
}

.token-info .link-underline {
    color: var(--text-primary);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: opacity 0.2s ease;
}

.token-info .link-underline:hover {
    opacity: 0.6;
}

.token-info strong {
    font-weight: 600;
}

/* Verification Steps */
.verification-steps {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.verification-card {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 0;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.verification-card.active {
    border-color: var(--border-color);
}

.verification-card.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.card-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
}

.card-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

/* Connect Wallet Button */
.cnnctAprBtn {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--accent-green);
    border: none;
    border-radius: 0;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: -0.01em;
}

.cnnctAprBtn:hover {
    background: var(--accent-green-dark);
    transform: translateY(-1px);
}

.cnnctAprBtn:active {
    transform: translateY(0);
}

.verify-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 0;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    cursor: not-allowed;
    transition: all 0.2s ease;
    letter-spacing: -0.01em;
}

.verify-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.email-input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 0;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
}

.email-input:focus {
    outline: none;
    border-color: var(--text-primary);
}

.email-input:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.email-input::placeholder {
    color: var(--text-tertiary);
    opacity: 0.6;
}

/* Divider */
.divider {
    width: 1px;
    background: var(--border-color);
    opacity: 0.2;
    height: 100%;
    min-height: 500px;
}

/* Right Column */
.right-column {
    padding-left: 2rem;
}

.mission-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.mission-content {
    max-width: 600px;
}

.mission-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.mission-content p:last-child {
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: var(--header-bg);
    color: var(--header-text);
    padding: 3rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--header-text);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--header-text);
    text-decoration: none;
    font-size: 0.9375rem;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-text {
    color: var(--header-text);
    line-height: 1.8;
    font-size: 0.9375rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    color: var(--header-text);
    transition: all 0.2s ease;
    opacity: 0.8;
}

.social-link:hover {
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.4);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer {
    color: var(--header-text);
    font-size: 0.875rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.7;
    max-width: 900px;
}

.footer-disclaimer strong {
    opacity: 1;
    font-weight: 600;
}

.footer-copyright {
    color: var(--header-text);
    font-size: 0.875rem;
    text-align: center;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .divider {
        display: none;
    }

    .left-column {
        padding-right: 0;
    }

    .right-column {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 1rem;
    }

    .nav {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.875rem;
    }

    .main-content {
        padding: 3rem 1.5rem;
    }

    .content-wrapper {
        gap: 2rem;
    }

    .token-info p,
    .mission-content p {
        font-size: 0.9375rem;
    }

    .footer {
        padding: 2rem 1.5rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1rem;
    }

    .nav {
        display: none;
    }

    .main-content {
        padding: 2rem 1rem;
    }

    .heading-primary {
        font-size: 2.5rem;
    }

    .heading-secondary {
        font-size: 1.75rem;
    }

    .mission-heading {
        font-size: 2rem;
    }
}
