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

:root {
    --primary-color: #667eea;
    --primary-dark: #5568d3;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --danger-color: #ef4444;
    --purple-color: #8b5cf6;
    --dark-bg: #1f2937;
    --light-bg: #f9fafb;
    --white: #ffffff;
    --text-dark: #111827;
    --text-gray: #6b7280;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.nav {
    background: var(--white);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.logo .tagline {
    font-size: 0.75rem;
    color: var(--text-gray);
    font-weight: 400;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding-bottom: 4rem;
}

.hero-content {
    padding: 4rem 0;
}

.hero-content .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.8;
}

.hero-cta {
    margin-top: 2rem;
}

.cta-incentive {
    margin-top: 1rem;
    font-size: 0.875rem;
    opacity: 0.9;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    animation: float 6s ease-in-out infinite;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

/* Button styling in white/light sections */
.for-sellers .btn-primary,
.for-buyers .btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    border: 2px solid var(--primary-color);
}

.for-sellers .btn-primary:hover,
.for-buyers .btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}
.roadmap-cta .btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.125rem;
    text-align: center;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.section-label {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

/* Features Section */
.features {
    background: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-card.featured {
    border: 2px solid var(--danger-color);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(239, 68, 68, 0.1));
}

.feature-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--danger-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-icon img {
    width: 80px;
    height: 80px;
    border-radius: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Split Content Sections */
.for-sellers,
.for-buyers {
    padding: 6rem 0;
}

.for-buyers {
    background: var(--light-bg);
}

.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-content.reverse {
    direction: rtl;
}

.split-content.reverse > * {
    direction: ltr;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.split-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.check-icon {
    background: var(--secondary-color);
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 0.875rem;
}

.benefits-list strong {
    color: var(--text-dark);
}

.benefits-list p,
.benefits-list div {
    color: var(--text-gray);
    line-height: 1.8;
}

/* How it Works Section */
.how-it-works {
    background: var(--white);
    padding: 6rem 0;
}

.example-comparison {
    max-width: 900px;
    margin: 0 auto 4rem;
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.search-example {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-color);
}

.search-example h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 0;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.seller-result {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.seller-result:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.seller-result.best-price {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.1));
}

.best-price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.seller-name {
    font-size: 0.875rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
    word-break: break-word;
}

.seller-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0.5rem 0;
}

.seller-rating {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.price-trend {
    background: var(--white);
    padding: 2rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
}

.price-trend h4 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.price-trend img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.trend-insight {
    text-align: center;
    font-size: 1.125rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin: 0;
}

.comparison-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-point {
    text-align: center;
    padding: 1.5rem;
}

.comparison-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.comparison-point p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.comparison-point strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.5rem;
}

/* Product Types Section */
.product-types {
    background: var(--light-bg);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.product-card {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--white);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.product-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--text-dark);
}

.product-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Waitlist Section */
.waitlist {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 6rem 0;
}

.waitlist .section-title {
    color: var(--white);
}

.waitlist-subtitle {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.waitlist-content {
    max-width: 600px;
    margin: 0 auto;
}

.waitlist-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-item {
    text-align: center;
}

.benefit-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.benefit-item p {
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Waitlist Form */
.waitlist-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input[type="email"],
.form-group input[type="url"] {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input[type="email"]:focus,
.form-group input[type="url"]:focus {
    outline: none;
    border-color: var(--primary-color);
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.radio-label {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.radio-label:hover {
    border-color: var(--primary-color);
    background: rgba(102, 126, 234, 0.05);
}

.radio-label input[type="radio"] {
    margin-right: 0.75rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.radio-label input[type="radio"]:checked + span {
    font-weight: 600;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.checkbox-label:hover {
    border-color: var(--primary-color);
    background: rgba(102, 126, 234, 0.05);
}

.checkbox-label input[type="checkbox"] {
    margin-right: 0.75rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"]:checked + span {
    font-weight: 600;
}

.field-help {
    font-size: 0.75rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
    margin-bottom: 0;
    line-height: 1.4;
}

.waitlist-form .btn {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    margin-top: 1rem;
}

.waitlist-form .btn:hover {
    background: var(--primary-dark);
}

.form-disclaimer {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-gray);
    margin-top: 1rem;
    line-height: 1.6;
}

/* Success Message */
.success-message {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    text-align: center;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    font-weight: 800;
}

.success-message h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.success-message p {
    color: var(--text-gray);
    font-size: 1.125rem;
    line-height: 1.8;
}

/* Social Proof Section */
.social-proof {
    background: var(--dark-bg);
    color: var(--white);
    padding: 4rem 0;
}

.social-content {
    text-align: center;
}

.social-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.social-content p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.social-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 2rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Roadmap Section */
.roadmap {
    background: linear-gradient(135deg, var(--light-bg), var(--white));
    padding: 6rem 0;
}

.roadmap-timeline {
    max-width: 900px;
    margin: 0 auto 4rem;
    position: relative;
}

.roadmap-cta {
    max-width: 700px;
    margin: 4rem auto 0;
    text-align: center;
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-color);
}

.roadmap-cta h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.roadmap-cta p {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 40px;
    bottom: 40px;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    padding-left: 100px;
    margin-bottom: 4rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 4px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.timeline-item.current .timeline-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: var(--primary-color);
    color: var(--white);
}

.timeline-item.future .timeline-icon {
    background: var(--white);
    border-color: var(--border-color);
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.timeline-item.current .timeline-content {
    border: 2px solid var(--primary-color);
}

.timeline-item.future .timeline-content {
    border: 2px solid var(--border-color);
}

.timeline-content h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.timeline-status {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.timeline-item.future .timeline-status {
    background: var(--text-gray);
}

.timeline-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.tcg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.tcg-badge {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border: 2px solid var(--border-color);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.tcg-badge:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    opacity: 0.8;
    font-size: 0.875rem;
}

.footer-links h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
    opacity: 0.7;
    font-size: 0.875rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    opacity: 0.7;
}

/* TCGPlayer-Style Price Guide */
.price-guide-container {
    background: var(--white);
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    margin: 3rem 0;
}

.price-guide-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.price-guide-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

/* Two Column Grid Layout */
.price-guide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.price-history-column {
    display: flex;
    flex-direction: column;
}

.price-details-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Near Mint Section */
.near-mint-section {
    background: #f2f9ff;
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.near-mint-section .section-header h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.near-mint-section .section-subtitle {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

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

.near-mint-table td {
    padding: 0.75rem 1rem;
}

.near-mint-table .label {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

.near-mint-table .price {
    text-align: right;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Price Points Section */
.price-points-section {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.price-points-section .section-header {
    margin-bottom: 1rem;
}

.price-points-section .section-header h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.condition-badge {
    display: inline-block;
    background: var(--light-bg);
    padding: 0.375rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
}

.price-metrics {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.metric-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.metric-row-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.metric-row-compact:last-of-type {
    border-bottom: none;
}

.metric-label {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

.metric-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.metric-value.highlight {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Volatility Indicator */
.volatility-container {
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 0.5rem;
}

.volatility-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.volatility-bar {
    position: relative;
    height: 8px;
    background: linear-gradient(to right, #10b981, #f59e0b, #ef4444);
    border-radius: 1rem;
}

.volatility-fill {
    height: 100%;
    background: rgba(73, 117, 252, 0.3);
    border-radius: 1rem;
}

.volatility-marker {
    position: absolute;
    top: -4px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #4975fc;
    transform: translateX(-50%);
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.metric-grid-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding-top: 1rem;
}

.metric-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.metric-item .metric-label {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.metric-item .metric-value {
    font-size: 1rem;
    font-weight: 600;
}

/* Snapshot Section */
.snapshot-section {
    background: var(--light-bg);
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.snapshot-section .section-header h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

.snapshot-table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
}

.snapshot-table .label {
    color: var(--text-dark);
    font-weight: 500;
}

.snapshot-table .value {
    font-weight: 700;
    color: var(--primary-color);
    padding-left: 0.5rem;
}

/* Price History Column */
.price-history-column .section-header {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.chart-header {
    background: #f2f9ff;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.chart-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chart-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

.graph-icon {
    width: 24px;
    height: 24px;
    color: #0835db;
}

.chart-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.chart-change {
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
}

.chart-change.positive {
    color: var(--secondary-color);
    background: rgba(16, 185, 129, 0.1);
}

.chart-change.negative {
    color: var(--danger-color);
    background: rgba(239, 68, 68, 0.1);
}

/* Price Chart */
.price-chart {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.chart-placeholder {
    width: 100%;
    height: 300px;
}

.chart-placeholder svg {
    width: 100%;
    height: 100%;
}

/* Time Frame Selector */
.time-frame-selector {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.time-btn {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    background: var(--white);
    color: var(--text-gray);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.time-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.time-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .split-content,
    .split-content.reverse {
        grid-template-columns: 1fr;
        gap: 3rem;
        direction: ltr;
    }

    .split-content.reverse > * {
        direction: ltr;
    }

    .section-title {
        font-size: 2rem;
    }

    .split-text h2 {
        font-size: 2rem;
    }

    .waitlist-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .social-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .example-comparison {
        padding: 2rem;
    }

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

    .comparison-benefits {
        grid-template-columns: 1fr;
    }

    .roadmap-timeline::before {
        left: 30px;
    }

    .timeline-item {
        padding-left: 80px;
    }

    .timeline-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .tcg-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .price-guide-container {
        padding: 1.5rem;
    }

    .price-guide-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .metric-grid,
    .metric-grid-compact {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .snapshot-table {
        font-size: 0.85rem;
    }

    .snapshot-table td {
        padding: 0.5rem 0.25rem;
    }

    .chart-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .time-frame-selector {
        flex-wrap: wrap;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .features-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .example-comparison {
        padding: 1.5rem;
    }

    .search-example h3 {
        font-size: 1.125rem;
    }

    .seller-price {
        font-size: 1.5rem;
    }

    .comparison-icon {
        font-size: 2rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .waitlist-form {
        padding: 2rem 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .roadmap-timeline::before {
        left: 20px;
        width: 2px;
    }

    .timeline-item {
        padding-left: 60px;
        margin-bottom: 3rem;
    }

    .timeline-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
        border-width: 3px;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .timeline-content h3 {
        font-size: 1.5rem;
    }

    .tcg-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .tcg-badge {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }

    .price-guide-container {
        padding: 1rem;
    }

    .price-guide-title {
        font-size: 1.5rem;
    }

    .near-mint-table .price {
        font-size: 1.25rem;
    }

    .metric-value.highlight {
        font-size: 1.25rem;
    }

    .chart-price {
        font-size: 1.25rem;
    }

    .snapshot-table {
        display: block;
    }

    .snapshot-table tr {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }

    .snapshot-table td {
        padding: 0.5rem;
    }
}
