/* ===================================
   Modern Theme - TokenVerse (DARK THEME)
   Color Palette: Teal, Coral, Indigo
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors */
    --primary-teal: #14b8a6;
    --primary-coral: #f97316;
    --primary-indigo: #6366f1;
    --primary-emerald: #10b981;
    
    /* Dark Theme Colors */
    --bg-primary: #0a0a0a;
    --bg-secondary: #111827;
    --bg-tertiary: #1f2937;
    --text-primary: #f9fafb;
    --text-secondary: #d1d5db;
    --text-muted: #9ca3af;
    --border-primary: #374151;
    --border-secondary: #2d3748;
    
    /* Neutral Colors (Dark Theme Adapted) */
    --white: #f9fafb;
    --gray-50: #1f2937;
    --gray-100: #374151;
    --gray-200: #4b5563;
    --gray-300: #6b7280;
    --gray-400: #9ca3af;
    --gray-500: #d1d5db;
    --gray-600: #e5e7eb;
    --gray-700: #f3f4f6;
    --gray-800: #f9fafb;
    --gray-900: #ffffff;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;
    
    /* Shadows (Dark Theme) */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.6);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   Top Header
   =================================== */
.top-header {
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 10px 0;
    font-size: 13px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-primary);
}

.top-header.hidden {
    transform: translateY(-100%);
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.top-header-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
}

.top-header-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    white-space: nowrap;
}

.top-header-item span {
    overflow: hidden;
    text-overflow: ellipsis;
}

.top-header-item i {
    color: var(--primary-teal);
    font-size: 12px;
}

.top-header-promo {
    color: var(--text-primary);
    font-weight: 500;
}

.top-header-promo i {
    color: var(--primary-coral);
}

.top-header-right > div:first-child {
    display: flex;
    align-items: center;
}

.top-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-social-link {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 6px;
    transition: var(--transition);
    font-size: 13px;
}

.top-social-link:hover {
    background: rgba(20, 184, 166, 0.15);
    color: var(--primary-teal);
}

.top-header-divider {
    width: 1px;
    height: 20px;
    background: var(--border-primary);
    margin: 0 8px;
}

.top-header-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 6px;
    transition: var(--transition);
    font-weight: 500;
}

.top-header-link:hover {
    background: rgba(20, 184, 166, 0.15);
    color: var(--primary-teal);
}

.top-header-link i {
    font-size: 12px;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 43px;
    left: 0;
    width: 100%;
    background: transparent;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    top: 0;
    background: rgba(17, 24, 39, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-primary);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    z-index: 1001;
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-teal);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    font-size: 20px;
}

.brand-text strong {
    color: var(--primary-teal);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-teal);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-teal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    margin-left: 20px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 10000;
    position: relative;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
}

.nav-toggle span {
    width: 26px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    position: absolute;
}

.nav-toggle span:nth-child(1) {
    top: 8px;
}

.nav-toggle span:nth-child(2) {
    top: 15px;
}

.nav-toggle span:nth-child(3) {
    top: 22px;
}

.nav-toggle.active span {
    background: var(--text-primary);
}

.nav-toggle.active span:nth-child(1) {
    top: 15px;
    transform: rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.nav-toggle.active span:nth-child(3) {
    top: 15px;
    transform: rotate(-45deg);
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--primary-teal);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background: #0f9b8e;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--primary-coral);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary-teal);
    border: 2px solid var(--primary-teal);
}

.btn-outline:hover {
    background: var(--primary-teal);
    color: var(--bg-primary);
}

.btn-large {
    padding: 16px 36px;
    font-size: 16px;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    padding: 183px 0 100px;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--primary-teal);
    opacity: 0.08;
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--primary-coral);
    opacity: 0.08;
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 56px;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-highlight {
    color: var(--primary-teal);
    position: relative;
    display: inline-block;
}

.hero-text p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border-primary);
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.stat-item p {
    color: var(--text-muted);
    font-size: 14px;
}

.hero-image {
    position: relative;
}

.hero-visual {
    width: 100%;
    height: 500px;
    background: var(--bg-tertiary);
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-primary);
}

.visual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 40px;
}

.visual-card {
    background: var(--bg-secondary);
    padding: 30px;
    border-radius: 16px;
    border: 2px solid var(--border-primary);
    text-align: center;
    transition: var(--transition);
}

.visual-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-teal);
    box-shadow: var(--shadow-lg);
}

.visual-card i {
    font-size: 48px;
    margin-bottom: 12px;
}

.visual-card:nth-child(1) i {
    color: var(--primary-teal);
}

.visual-card:nth-child(2) i {
    color: var(--primary-coral);
}

.visual-card:nth-child(3) i {
    color: var(--primary-indigo);
}

.visual-card:nth-child(4) i {
    color: var(--primary-emerald);
}

.visual-card h4 {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.visual-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ===================================
   Section Styles
   =================================== */
.section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: var(--bg-tertiary);
    color: var(--primary-teal);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--border-primary);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--text-primary);
    margin-bottom: 16px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===================================
   Features Section
   =================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--bg-secondary);
    padding: 40px 32px;
    border-radius: 16px;
    border: 2px solid var(--border-primary);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-teal);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    transition: var(--transition);
}

.feature-card:nth-child(1) .feature-icon {
    background: rgba(20, 184, 166, 0.15);
    color: var(--primary-teal);
}

.feature-card:nth-child(2) .feature-icon {
    background: rgba(249, 115, 22, 0.15);
    color: var(--primary-coral);
}

.feature-card:nth-child(3) .feature-icon {
    background: rgba(99, 102, 241, 0.15);
    color: var(--primary-indigo);
}

.feature-card:nth-child(4) .feature-icon {
    background: rgba(16, 185, 129, 0.15);
    color: var(--primary-emerald);
}

.feature-card:nth-child(5) .feature-icon {
    background: rgba(20, 184, 166, 0.15);
    color: var(--primary-teal);
}

.feature-card:nth-child(6) .feature-icon {
    background: rgba(249, 115, 22, 0.15);
    color: var(--primary-coral);
}

.feature-card h3 {
    font-size: 22px;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* ===================================
   Plans Section
   =================================== */
.plans-section {
    background: var(--bg-secondary);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.plan-card {
    background: var(--bg-tertiary);
    border-radius: 20px;
    padding: 48px 40px;
    border: 2px solid var(--border-primary);
    transition: var(--transition);
    position: relative;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.plan-card.featured {
    border-color: var(--primary-teal);
    box-shadow: var(--shadow-lg);
}

.plan-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-coral);
    color: var(--text-primary);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    text-align: center;
}

.plan-price {
    text-align: center;
    margin-bottom: 32px;
}

.price-amount {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-teal);
    font-family: var(--font-heading);
}

.price-currency {
    font-size: 28px;
    color: var(--text-muted);
    vertical-align: super;
}

.price-period {
    display: block;
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 8px;
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
}

.plan-features li {
    padding: 14px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 15px;
    border-bottom: 1px solid var(--border-primary);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features i {
    color: var(--primary-emerald);
    font-size: 18px;
    flex-shrink: 0;
}

.plan-button {
    width: 100%;
}

/* ===================================
   About Section
   =================================== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-img-wrapper {
    width: 100%;
    height: 500px;
    background: var(--bg-tertiary);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-primary);
}

.about-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-stats {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--bg-secondary);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    min-width: 220px;
    border: 1px solid var(--border-primary);
}

.about-stats h4 {
    font-size: 42px;
    color: var(--primary-teal);
    font-weight: 700;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.about-stats p {
    color: var(--text-muted);
    font-size: 15px;
}

.about-text h2 {
    font-size: 38px;
    color: var(--text-primary);
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.about-text p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.about-features {
    display: grid;
    gap: 20px;
    margin: 32px 0;
}

.about-feature-item {
    display: flex;
    align-items: start;
    gap: 16px;
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(20, 184, 166, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-teal);
    font-size: 22px;
    flex-shrink: 0;
}

.about-feature-text h4 {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 6px;
    font-weight: 600;
}

.about-feature-text p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

/* ===================================
   Tokenomics Section
   =================================== */
.tokenomics-section {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.tokenomics-section .section-tag {
    background: rgba(20, 184, 166, 0.2);
    color: var(--primary-teal);
}

.tokenomics-section .section-title {
    color: var(--text-primary);
}

.tokenomics-section .section-subtitle {
    color: var(--text-muted);
}

.tokenomics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.chart-container {
    background: var(--bg-tertiary);
    padding: 48px;
    border-radius: 24px;
    border: 1px solid var(--border-primary);
}

.chart-wrapper {
    max-width: 400px;
    margin: 0 auto;
}

.token-info {
    display: grid;
    gap: 24px;
}

.token-detail {
    background: var(--bg-tertiary);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--border-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.token-detail-label {
    color: var(--text-muted);
    font-size: 15px;
}

.token-detail-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-teal);
    font-family: var(--font-heading);
}

.distribution-list {
    display: grid;
    gap: 16px;
    margin-top: 32px;
}

.distribution-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-tertiary);
    border-radius: 12px;
    border: 1px solid var(--border-primary);
}

.dist-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    flex-shrink: 0;
}

.dist-label {
    flex: 1;
    color: var(--text-secondary);
    font-size: 15px;
}

.dist-value {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 16px;
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    background: var(--primary-teal);
    color: var(--bg-primary);
    padding: 80px 0;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-white {
    background: var(--text-primary);
    color: var(--primary-teal);
}

.btn-white:hover {
    background: var(--text-secondary);
}

.btn-outline-white {
    background: transparent;
    color: var(--bg-primary);
    border: 2px solid var(--bg-primary);
}

.btn-outline-white:hover {
    background: var(--bg-primary);
    color: var(--primary-teal);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--bg-secondary);
    color: var(--text-muted);
    padding: 80px 0 32px;
    border-top: 1px solid var(--border-primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-brand .brand-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.footer-desc {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--text-muted);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--bg-tertiary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--border-primary);
}

.social-link:hover {
    background: var(--primary-teal);
    color: var(--bg-primary);
    border-color: var(--primary-teal);
}

.footer-title {
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: grid;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-teal);
}

.footer-newsletter-text {
    font-size: 14px;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-primary);
    background: var(--bg-tertiary);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 14px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-teal);
}

.btn-newsletter {
    width: 48px;
    height: 48px;
    background: var(--primary-teal);
    border: none;
    border-radius: 8px;
    color: var(--bg-primary);
    cursor: pointer;
    transition: var(--transition);
}

.btn-newsletter:hover {
    background: #0f9b8e;
}

.footer-contact {
    display: grid;
    gap: 12px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.footer-contact i {
    color: var(--primary-teal);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary-teal);
}

/* ===================================
   Scroll to Top
   =================================== */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 50px;
    height: 50px;
    background: var(--primary-teal);
    border: none;
    border-radius: 12px;
    color: var(--bg-primary);
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: #0f9b8e;
    transform: translateY(-4px);
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info {
    display: grid;
    gap: 24px;
}

.contact-card {
    background: var(--bg-tertiary);
    padding: 32px;
    border-radius: 16px;
    border: 2px solid var(--border-primary);
    display: flex;
    align-items: start;
    gap: 20px;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: rgba(20, 184, 166, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-teal);
    font-size: 24px;
    flex-shrink: 0;
}

.contact-card h4 {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-card p {
    color: var(--text-muted);
    font-size: 15px;
}

.contact-form-wrapper {
    background: var(--bg-tertiary);
    padding: 48px;
    border-radius: 20px;
    border: 2px solid var(--border-primary);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-primary);
    border-radius: 8px;
    font-size: 15px;
    font-family: var(--font-primary);
    transition: var(--transition);
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-teal);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
}

/* ===================================
   Comparison Table
   =================================== */
.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    background: var(--bg-tertiary);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border-collapse: collapse;
    border: 1px solid var(--border-color);
}

.comparison-table thead {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-bottom: 2px solid var(--border-color);
}

.comparison-table th {
    padding: 20px;
    font-weight: 600;
    text-align: center;
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--border-light);
}

.comparison-table tbody tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.2);
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: var(--bg-secondary);
}

.comparison-table td {
    padding: 16px;
    text-align: center;
    color: var(--text-secondary);
}

.comparison-table td:first-child {
    font-weight: 500;
    text-align: left;
    color: var(--text-primary);
}

.comparison-table .highlight {
    color: var(--primary-teal);
    font-weight: 600;
}

/* ===================================
   Social Media Grid
   =================================== */
.social-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
}

/* ===================================
   Team Grid
   =================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

/* Stats Grid Variations */
.stats-grid-4 {
    grid-template-columns: repeat(4, 1fr) !important;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 992px) {
    /* Keep promo visible, hide social links and register button instead */
    .top-header-right > div:first-child {
        display: none;
    }
    
    .top-header-right .top-header-link:last-child {
        display: none;
    }
    
    .top-header-divider {
        display: none;
    }
    
    .top-header-item {
        font-size: 11px;
    }
    
    .top-header-content {
        gap: 8px;
    }
    
    .top-header-left {
        gap: 12px;
        min-width: 0;
        flex: 1;
    }
    
    .top-header-right {
        gap: 6px;
        flex-shrink: 0;
    }
    
    /* Modern Full-Screen Overlay Menu */
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 60px 40px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
        gap: 32px;
        z-index: 9999;
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(6) { transition-delay: 0.35s; }
    
    .nav-link {
        color: var(--text-primary);
        font-size: 28px;
        font-weight: 600;
        font-family: var(--font-heading);
        text-align: center;
    }
    
    .nav-link::after {
        background: var(--primary-teal);
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: var(--primary-teal);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-cta {
        margin-left: 0;
        width: 100%;
    }
    
    .nav-cta .btn {
        width: 100%;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 42px;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .features-grid,
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .about-content,
    .tokenomics-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .chart-container {
        padding: 32px;
    }
    
    .chart-wrapper {
        max-width: 350px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .social-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .stats-grid-4 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .top-header {
        padding: 8px 0;
        font-size: 10px;
    }
    
    .top-header-left {
        gap: 8px;
        overflow: hidden;
    }
    
    /* Hide phone and email, keep only promo */
    .top-header-item:not(.top-header-promo) {
        display: none;
    }
    
    .top-header-promo {
        font-size: 10px;
    }
    
    .top-header-promo span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .top-header-right {
        gap: 4px;
    }
    
    .top-header-link {
        padding: 4px 8px;
        font-size: 11px;
    }
    
    .top-header-link span {
        display: none;
    }
    
    .hero {
        padding: 163px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .hero-text p {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .visual-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 30px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .chart-container {
        padding: 24px;
    }
    
    .chart-wrapper {
        max-width: 280px;
    }
    
    .token-detail {
        padding: 16px;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .token-detail-label,
    .token-detail-value {
        font-size: 14px;
    }
    
    .token-detail-value {
        font-size: 18px;
    }
    
    .distribution-item {
        padding: 12px;
        gap: 12px;
    }
    
    .dist-label,
    .dist-value {
        font-size: 14px;
    }
    
    .features-grid,
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .stats-grid-4 {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .chart-container {
        padding: 20px;
    }
    
    .chart-wrapper {
        max-width: 240px;
    }
    
    .distribution-list {
        gap: 12px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}
