:root {
    --primary: #6200EE;
    --primary-light: #7c4dff;
    --primary-dark: #4a148c;
    --danger: #B71C1C;
    --warning: #FFA000;
    --success: #4CAF50;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --gray-300: #e0e0e0;
    --gray-400: #bdbdbd;
    --gray-500: #9e9e9e;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    background-color: var(--gray-100);
    color: var(--gray-900);
    line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0.5em;
    font-weight: 500;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    font-weight: 500;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

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

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

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: white;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-secondary:hover {
    background-color: rgba(98, 0, 238, 0.05);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Header styles */
header {
    background-color: white;
    box-shadow: var(--shadow);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

/* New navigation styles */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0 15px;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-800);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown styling */
.dropdown {
    position: relative;
}

.dropdown-arrow {
    margin-left: 3px;
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: var(--shadow-md);
    border-radius: 4px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: var(--gray-700);
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s;
}

.dropdown-menu a:hover {
    background-color: var(--gray-100);
    color: var(--primary);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
    font-size: 2.0rem;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-cta .btn {
    padding: 8px 16px;
}

/* Mobile menu styles */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--gray-800);
    margin: 5px 0;
    transition: transform 0.3s ease;
}

/* Hero section styling */
.hero {
    color: white;
    padding: 80px 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="none" width="100" height="100"/><path fill="rgba(255,255,255,0.05)" d="M30,10L80,90M50,10L90,80M70,10L100,70M10,30L90,80M10,50L80,90M10,70L70,100"/></svg>');
    background-size: 150px;
    opacity: 0.3;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-message,
.hero-visual {
    flex: 1;
}

.hero {
    background: linear-gradient(135deg,
            rgba(74, 20, 140, 0.95) 0%,
            /* Very dark purple (primary-dark) on left */
            rgba(98, 0, 238, 0.9) 35%,
            /* Primary purple in middle-left */
            rgba(98, 0, 238, 0.85) 65%,
            /* Primary purple in middle-right */
            rgba(124, 77, 255, 0.8) 100%);
    /* Primary-light on right edge */
    position: relative;
    overflow: hidden;
}

/* Enhance pattern with subtle pulse animation */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="none" width="100" height="100"/><path fill="rgba(255,255,255,0.07)" d="M30,10L80,90M50,10L90,80M70,10L100,70M10,30L90,80M10,50L80,90M10,70L70,100"/></svg>');
    background-size: 150px;
    opacity: 0.3;
    animation: pulsePattern 8s ease-in-out infinite alternate;
}

@keyframes pulsePattern {
    0% {
        opacity: 0.25;
    }

    100% {
        opacity: 0.4;
    }
}

/* Hero message styling */
.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.beginner-friendly-badge {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    display: inline-block;
}

.beginner-friendly-badge span {
    border-bottom: 2px solid white;
    font-weight: 500;
}

.cta-button {
    margin-top: 30px;
    font-size: 1.1rem;
    padding: 12px 30px;
}

.waitlist-progress {
    margin-top: 30px;
    max-width: 500px;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.progress-bar {
    height: 8px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 78%;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
}

/* Demo frame styling */
.hero-visual {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.product-demo {
    position: relative;
    height: 580px;
    background-color: var(--gray-100);
}

.demo-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    background-color: white;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.demo-frame.active {
    opacity: 1;
    z-index: 10;
}

/* Card header styling */
.card-header {
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--gray-200);
    background-color: rgba(98, 0, 238, 0.03);
}

.card-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-800);
    display: flex;
    align-items: center;
}

.card-title-icon {
    margin-right: 8px;
    color: var(--primary);
}

.portfolio-value {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-800);
    display: flex;
    align-items: center;
}

.change {
    font-size: 14px;
    margin-left: 4px;
}

.change.positive {
    color: var(--success);
}

.card-content {
    padding: 16px;
    flex: 1;
    overflow-y: auto;
}

.card-content.compact {
    padding: 12px;
}

/* Portfolio Health Frame Styling */
.portfolio-health-layout {
    display: flex;
    flex-direction: column;
}

.top-row {
    display: flex;
    margin-bottom: 24px;
}

.health-gauge-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40%;
}

.health-explanation-container {
    flex: 1;
    padding-left: 20px;
}

.bottom-row {
    width: 100%;
}

.health-gauge {
    width: 160px;
    height: 80px;
    position: relative;
    margin-bottom: 20px;
}

.gauge-background {
    width: 160px;
    height: 80px;
    background: linear-gradient(90deg, var(--danger) 0%, var(--warning) 50%, var(--success) 100%);
    border-radius: 80px 80px 0 0;
    position: absolute;
    top: 0;
    overflow: hidden;
}

.gauge-mask {
    width: 140px;
    height: 70px;
    background-color: white;
    border-radius: 70px 70px 0 0;
    position: absolute;
    top: 10px;
    left: 10px;
}

.gauge-needle {
    width: 2px;
    height: 72px;
    background-color: var(--gray-800);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform-origin: bottom center;
    transform: rotate(32deg);
}

.gauge-center {
    width: 12px;
    height: 12px;
    background-color: var(--gray-800);
    border-radius: 6px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

#gauge-value {
    position: absolute;
    bottom: -40px;
    font-size: 28px;
    font-weight: 600;
    color: var(--warning);
    left: 50%;
    transform: translateX(-50%);
}

.gauge-label {
    font-size: 14px;
    color: var(--gray-600);
    margin-top: 12px;
}

.health-status {
    font-size: 18px;
    font-weight: 500;
    color: var(--warning);
    margin-bottom: 16px;
}

.health-explanation {
    color: var(--gray-600);
    line-height: 1.5;
    font-size: 14px;
}

.health-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.health-metric {
    background-color: var(--gray-100);
    padding: 10px;
    border-radius: 6px;
}

.health-metric-name {
    font-size: 12px;
    color: var(--gray-600);
    margin-bottom: 4px;
}

.health-metric-value {
    font-size: 16px;
    font-weight: 600;
}

.health-metric-value.warning {
    color: var(--warning);
}

.term {
    border-bottom: 1px dashed var(--primary-light);
    color: var(--primary-dark);
    font-weight: 500;
    cursor: help;
    position: relative;
}

.health-components {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.health-component {
    display: flex;
    align-items: center;
}

.component-label {
    width: 120px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-800);
}

.component-bar {
    flex: 1;
    height: 8px;
    background-color: var(--gray-200);
    border-radius: 4px;
    overflow: hidden;
}

.component-fill {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 6px;
    font-size: 10px;
    font-weight: 500;
    color: white;
}

.component-fill.success {
    background-color: var(--success);
}

.component-fill.warning {
    background-color: var(--warning);
}

.component-fill.danger {
    background-color: var(--danger);
}

.health-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.health-item {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    background-color: var(--gray-100);
    border-radius: 4px;
    font-size: 13px;
}

.health-item-icon {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.health-item.warning {
    color: var(--warning);
    background-color: rgba(255, 160, 0, 0.1);
    border-left: 3px solid var(--warning);
}

.health-item.danger {
    color: var(--danger);
    background-color: rgba(183, 28, 28, 0.1);
    border-left: 3px solid var(--danger);
    box-shadow: 0 0 0 1px var(--danger);
    animation: pulse 2s infinite;
}

.health-item.success {
    color: var(--success);
    background-color: rgba(76, 175, 80, 0.1);
    border-left: 3px solid var(--success);
}

.health-item-action {
    margin-left: auto;
    color: var(--primary);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0px rgba(183, 28, 28, 0.2);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(183, 28, 28, 0);
    }

    100% {
        box-shadow: 0 0 0 0px rgba(183, 28, 28, 0);
    }
}

/* Crypto Scorecard Frame Styling */
.crypto-card {
    border-radius: 8px;
    overflow: hidden;
}

.crypto-header {
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--gray-200);
    background: rgba(183, 28, 28, 0.05);
    height: 85px;
}

.crypto-icon {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
}

.crypto-icon.moonx {
    background-color: #FFCA28;
    color: var(--gray-800);
}

.crypto-title h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
}

.crypto-ticker {
    color: var(--gray-500);
    font-size: 12px;
    font-weight: normal;
    margin-left: 4px;
}

.crypto-subtitle {
    font-size: 13px;
    color: var(--gray-600);
}

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

.score-circle {
    width: 45px;
    height: 45px;
    border-radius: 22.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    border: 3px solid;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.score-circle.danger {
    border-color: var(--danger);
    color: var(--danger);
}

.score-value {
    font-size: 18px;
    font-weight: 600;
}

.score-label {
    font-size: 0.7rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.score-components {
    padding: 16px;
    border-bottom: 1px solid var(--gray-200);
}

.component-row {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.component-row:last-child {
    margin-bottom: 0;
}

.component-name {
    width: 140px;
    font-size: 0.8rem;
    color: var(--gray-700);
    display: flex;
    align-items: center;
}

.tooltip-icon {
    margin-left: 5px;
    width: 16px;
    height: 16px;
    border-radius: 8px;
    background-color: var(--gray-200);
    color: var(--gray-600);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    cursor: help;
    position: relative;
}

.component-bar-container {
    flex: 1;
}

.risk-reward-profile {
    padding: 16px 16px 0;
}

.risk-reward-profile h4 {
    margin: 0 0 12px;
    font-size: 15px;
    color: var(--gray-800);
    text-align: center;
}

.profile-container {
    display: flex;
    gap: 16px;
}

.profile-column {
    flex: 1;
}

.profile-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.profile-icon {
    width: 24px;
    height: 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.profile-icon.safety {
    background-color: rgba(98, 0, 238, 0.1);
    color: var(--gray-600);
}

.profile-icon.growth {
    background-color: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.profile-title {
    font-weight: 500;
    color: var(--gray-800);
}

.profile-card {
    background-color: var(--gray-100);
    border-radius: 8px;
    padding: 12px;
}

.risk-level,
.growth-level {
    font-weight: 600;
    margin-bottom: 10px;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    font-size: 0.85rem;
}

.risk-level.high,
.growth-level.high {
    background-color: #FFEBEE;
    color: #C62828;
}

.risk-factors,
.growth-factors {
    padding-left: 16px;
    margin: 0 0 8px;
    font-size: 0.8rem;
    color: var(--gray-700);
}

.risk-factors li,
.growth-factors li {
    margin-bottom: 6px;
    line-height: 1.4;
}

/* AI Insights Frame Styling */
.insights-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.insight-item {
    display: flex;
    padding: 16px;
    border-radius: 6px;
    background-color: var(--gray-100);
}

.insight-icon {
    width: 32px;
    height: 32px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

/* Add these styles to your CSS */
#ai-insights-frame .insight-item {
    padding: 12px;
    /* Reduced from 16px */
    margin-bottom: 0;
    /* Remove any margin between items */
}

#ai-insights-frame .insight-content {
    padding: 0;
}

#ai-insights-frame .insights-list {
    gap: 10px;
    /* Reduced from 16px */
}

#ai-insights-frame .insight-description {
    line-height: 1.4;
    /* Slightly reduced line height */
    max-height: 54px;
    /* Limit description height */
    overflow: hidden;
}

#ai-insights-frame .insight-actions {
    margin-bottom: 6px;
    /* Reduced from 10px */
}

#ai-insights-frame .source-attribution {
    padding-top: 6px;
    /* Reduced from 10px */
}

#ai-insights-frame .card-content {
    padding: 12px;
    /* Reduced from 16px */
}

.insight-icon.technical {
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--success);
}

.insight-icon.market {
    background-color: rgba(255, 160, 0, 0.1);
    color: var(--warning);
}

.insight-content {
    flex: 1;
}

.insight-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.insight-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-800);
}

.insight-timestamp {
    font-size: 11px;
    color: var(--gray-500);
}

.impact-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 8px;
}

.impact-badge svg {
    margin-right: 4px;
}

.impact-badge.positive {
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--success);
}

.insight-description {
    font-size: 13px;
    color: var(--gray-700);
    line-height: 1.5;
    margin-bottom: 12px;
}

.insight-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.insight-confidence {
    display: flex;
    align-items: center;
    font-size: 12px;
}

.confidence-label {
    color: var(--gray-600);
    margin-right: 4px;
}

.confidence-level {
    font-weight: 500;
}

.confidence-level.high {
    color: var(--success);
}

.confidence-level.medium {
    color: var(--warning);
}

.why-this-insight {
    display: flex;
    align-items: center;
    color: var(--primary);
    background: none;
    border: none;
    font-size: 12px;
    cursor: pointer;
    padding: 0;
}

.why-this-insight svg {
    margin-left: 4px;
}

.source-attribution {
    border-top: 1px solid var(--gray-200);
    padding-top: 10px;
}

.source-attribution-text {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Responsive styles */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }

    .hero-message,
    .hero-visual {
        width: 100%;
    }

    .top-row {
        flex-direction: column;
    }

    .health-gauge-container {
        width: 100%;
        margin-bottom: 20px;
    }

    .health-explanation-container {
        padding-left: 0;
    }

    .profile-container {
        flex-direction: column;
    }
}

/* Product descriptor */
.product-descriptor {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.85;
    color: rgba(255, 255, 255, 0.95);
}

/* Enhanced All-in-One banner while preserving original message and style */
.all-in-one-banner {
    background: linear-gradient(to right, rgba(124, 77, 255, 0.05), rgba(98, 0, 238, 0.08), rgba(124, 77, 255, 0.05));
    padding: 24px 0;
    margin: 40px 0 30px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    border-top: 3px solid var(--primary-light);
    border-bottom: 1px solid rgba(124, 77, 255, 0.2);
}

.all-in-one-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    flex-direction: column;
}

.all-in-one-icon {
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: white;
    border-radius: 50%;
    padding: 9px;
    box-shadow: 0 2px 8px rgba(98, 0, 238, 0.2);
}

.all-in-one-text {
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--primary);
    position: relative;
}

/* Decorative underline for the text */
.all-in-one-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 5%;
    width: 90%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary-light), transparent);
}

.banner-cta-button {
    background-color: var(--primary);
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(98, 0, 238, 0.3);
}

.banner-cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(98, 0, 238, 0.4);
}

/* Hide CTA on very small screens and adjust layout */
@media (max-width: 768px) {
    .all-in-one-content {
        flex-wrap: wrap;
    }

    .banner-cta-button {
        margin-top: 12px;
        margin-left: 0;
    }
}

/* For extremely small screens, simplify further */
@media (max-width: 400px) {
    .all-in-one-text {
        font-size: 1.1rem;
    }

    .all-in-one-icon {
        width: 36px;
        height: 36px;
    }
}

/* Waitlist Progress */
.waitlist-progress {
    margin-top: 1.5rem;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.progress-bar {
    height: 8px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 78%;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
}

/* Problem/Solution section */
.problem-solution {
    padding: 80px 0;
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.problem-card {
    background-color: var(--gray-100);
    border-radius: 8px;
    padding: 25px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.problem-card h3 {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.problem-icon {
    margin-right: 10px;
    color: var(--primary);
}

.solution-container {
    margin-top: 60px;
    text-align: center;
}

.solution-title {
    color: var(--primary);
    margin-bottom: 25px;
}

/* Value Trio section */
.value-trio {
    padding: 80px 0;
    background-color: var(--gray-100);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-top: 4px solid var(--primary);
}

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

.value-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(98, 0, 238, 0.1);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.value-icon svg {
    width: 30px;
    height: 30px;
    color: var(--primary);
}

.value-title {
    margin-bottom: 10px;
    font-weight: 500;
}

.value-description {
    color: var(--gray-700);
    margin-bottom: 0;
}

/* Features section */
.features {
    padding: 80px 0;
    background-color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(98, 0, 238, 0.1);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    color: var(--primary);
}

.feature-title {
    margin-bottom: 10px;
    font-weight: 500;
}

.feature-description {
    color: var(--gray-700);
    margin-bottom: 0;
}

/* Feature Showcase Sections (Common Styles) */
.feature-section {
    padding: 80px 0;
}

.feature-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.feature-content {
    flex: 1;
    min-width: 300px;
}

.feature-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--gray-900);
}

.feature-description {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--gray-700);
    line-height: 1.6;
}

.feature-benefits {
    margin-bottom: 25px;
    padding-left: 0;
}

.feature-benefit-item {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--gray-800);
    list-style-type: none;
}

.feature-benefit-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 18px;
    height: 18px;
    background-color: var(--primary);
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M22 11.08V12a10 10 0 1 1-5.93-9.14"></path><polyline points="22 4 12 14.01 9 11.01"></polyline></svg>');
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M22 11.08V12a10 10 0 1 1-5.93-9.14"></path><polyline points="22 4 12 14.01 9 11.01"></polyline></svg>');
    mask-size: cover;
    -webkit-mask-size: cover;
}

.feature-visual {
    flex: 1;
    min-width: 300px;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
}

.feature-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Scam Detector Section */
.scam-detector-section {
    background-color: white;
}

.risk-gauge {
    width: 160px;
    height: 80px;
    position: relative;
    margin: 20px auto;
}

.gauge-background {
    width: 160px;
    height: 80px;
    background: linear-gradient(90deg, var(--danger) 0%, var(--warning) 50%, var(--success) 100%);
    border-radius: 80px 80px 0 0;
    position: absolute;
    top: 0;
    overflow: hidden;
}

.gauge-mask {
    width: 140px;
    height: 70px;
    background-color: white;
    border-radius: 70px 70px 0 0;
    position: absolute;
    top: 10px;
    left: 10px;
}

.gauge-needle {
    width: 2px;
    height: 72px;
    background-color: var(--gray-800);
    position: absolute;
    left: 50%;
    transform-origin: bottom center;
    transform: rotate(-60deg);
}

.gauge-center {
    width: 12px;
    height: 12px;
    background-color: var(--gray-800);
    border-radius: 6px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.gauge-value {
    position: absolute;
    bottom: -40px;
    font-size: 28px;
    font-weight: 600;
    color: var(--danger);
    left: 50%;
    transform: translateX(-50%);
}

.scam-detector-demo {
    padding: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.risk-factors {
    background-color: var(--gray-100);
    border-radius: 6px;
    margin-top: 20px;
}

.factors-header {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--gray-800);
}

.factor-list {
    list-style-type: none;
}

.factor-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-700);
}

.factor-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.factor-icon {
    color: var(--danger);
    margin-right: 8px;
    margin-top: 2px;
    flex-shrink: 0;
}

.score-methodology {
    background-color: var(--gray-100);
    border-radius: 6px;
    padding: 12px;
    margin-top: 16px;
}

.methodology-title {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 6px;
    color: var(--gray-800);
}

.methodology-content {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.5;
}

/* Add these CSS styles to your existing styles */
.health-details {
    flex: 1;
}

.health-status {
    font-size: 18px;
    font-weight: 500;
    color: var(--warning);
    margin-bottom: 16px;
}

.health-explanation {
    color: var(--gray-600);
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.5;
}

.health-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.health-metric {
    background-color: var(--gray-100);
    padding: 10px;
    border-radius: 6px;
}

.health-metric-name {
    font-size: 12px;
    color: var(--gray-600);
    margin-bottom: 4px;
}

.health-metric-value {
    font-size: 16px;
    font-weight: 600;
}

.health-metric-value.good {
    color: var(--success);
}

.health-metric-value.warning {
    color: var(--warning);
}

.health-metric-value.danger {
    color: var(--danger);
}

/* Tooltip Styles */
[data-tooltip] {
    position: relative;
    cursor: help;
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 14px;
    background-color: rgba(33, 33, 33, 0.95);
    color: white;
    border-radius: 4px;
    font-size: 13px;
    white-space: normal;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    z-index: 9999;
    width: max-content;
    max-width: 300px;
    text-align: left;
    line-height: 1.6;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

[data-tooltip]:hover::after {
    opacity: 1;
    visibility: visible;
}

.help-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: var(--primary-light);
    background-color: rgba(124, 77, 255, 0.1);
    border-radius: 50%;
    padding: 3px;
}

.term {
    border-bottom: 1px dashed var(--primary-light);
    color: var(--primary-dark);
    font-weight: 500;
    cursor: help;
    position: relative;
}

.health-components {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.health-component {
    display: flex;
    align-items: center;
}

.component-label {
    width: 120px;
    font-size: 13px;
    font-weight: 500;
}

.component-bar {
    flex: 1;
    height: 8px;
    background-color: var(--gray-200);
    border-radius: 4px;
    overflow: hidden;
}

.component-fill {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 6px;
    font-size: 10px;
    font-weight: 500;
    color: white;
}

.component-fill.success {
    background-color: var(--success);
}

.component-fill.warning {
    background-color: var(--warning);
}

.component-fill.danger {
    background-color: var(--danger);
}

.health-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.health-item {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    background-color: var(--gray-100);
    border-radius: 4px;
    font-size: 13px;
}

.health-item-icon {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.health-item.warning {
    color: var(--warning);
    background-color: rgba(255, 160, 0, 0.1);
    border-left: 3px solid var(--warning);
}

.health-item.danger {
    color: var(--danger);
    background-color: rgba(183, 28, 28, 0.1);
    border-left: 3px solid var(--danger);
}

.health-item.success {
    color: var(--success);
    background-color: rgba(76, 175, 80, 0.1);
    border-left: 3px solid var(--success);
}

/* Animation for important items */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0px rgba(183, 28, 28, 0.2);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(183, 28, 28, 0);
    }

    100% {
        box-shadow: 0 0 0 0px rgba(183, 28, 28, 0);
    }
}

.health-item.danger {
    box-shadow: 0 0 0 1px var(--danger);
    animation: pulse 2s infinite;
}

@media (max-width: 768px) {
    .product-demo {
        height: 750px;
    }
}

/* Risk Alerts Section */
.risk-alerts-section {
    background-color: white;
}

/* Alert Card */
.alert-card {
    background-color: white;
    border-radius: 8px;
    border-left: 4px solid var(--danger);
    padding: 16px;
    margin-bottom: 15px;
}

.alert-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.alert-title {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.alert-icon {
    width: 24px;
    height: 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    background-color: rgba(183, 28, 28, 0.1);
    color: var(--danger);
}

.alert-badge {
    display: inline-flex;
    padding: 2px 6px;
    background-color: rgba(183, 28, 28, 0.1);
    color: var(--danger);
    border-radius: 4px;
    font-size: 12px;
    margin-left: 8px;
}

.alert-timestamp {
    font-size: 12px;
    color: var(--gray-500);
}

.alert-content {
    margin-bottom: 12px;
    font-size: 14px;
}

.affected-assets {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.asset-tag {
    display: flex;
    align-items: center;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 4px;
    background-color: var(--gray-100);
    gap: 4px;
}

.asset-icon {
    width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    background-color: var(--primary-light);
    color: white;
}

/* Crypto Scorecard Section */
.crypto-scorecard-section {
    padding: 80px 0;
    background-color: var(--gray-100);
}

.scorecard-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.scorecard-content {
    flex: 1;
    min-width: 300px;
}

.scorecard-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--gray-900);
}

.scorecard-description {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--gray-700);
    line-height: 1.6;
}

.scorecard-benefits {
    margin-bottom: 25px;
    padding-left: 0;
}

.scorecard-benefit-item {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--gray-800);
    list-style-type: none;
}

.scorecard-benefit-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 18px;
    height: 18px;
    background-color: var(--primary);
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M22 11.08V12a10 10 0 1 1-5.93-9.14"></path><polyline points="22 4 12 14.01 9 11.01"></polyline></svg>');
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M22 11.08V12a10 10 0 1 1-5.93-9.14"></path><polyline points="22 4 12 14.01 9 11.01"></polyline></svg>');
    mask-size: cover;
    -webkit-mask-size: cover;
}

.scorecard-visual {
    flex: 1;
    min-width: 300px;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
}

.scorecard-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Crypto Scorecard Improved Styling */
.crypto-card {
    background-color: white;
    border-radius: 8px;
    /* Match site's border radius */
    box-shadow: var(--shadow);
    /* Use site's shadow variable */
    overflow: hidden;
    padding: 0;
}

.crypto-header {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    /* Slightly reduced padding */
    border-bottom: 1px solid var(--gray-200);
    background: rgba(98, 0, 238, 0.03);
    /* Lighter background matching site */
}

.crypto-icon {
    width: 48px;
    height: 48px;
    border-radius: 24px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.crypto-icon img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.crypto-title {
    flex: 1;
}

.crypto-title h3 {
    margin: 0;
    font-size: 1.3rem;
    color: var(--gray-900);
}

.crypto-subtitle {
    font-size: 0.9rem;
    color: var(--gray-600);
}

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

.score-circle {
    width: 60px;
    height: 60px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    /* Add border to match mockup */
    border: 3px solid;
    /* Adjust border color from mockup */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    /* Subtle shadow for depth */
}

/* Ethereum (Low Risk) score circle */
#ethereum-tab .score-circle {
    border-color: var(--success);
    color: var(--success);
}

/* Solana (Moderate Risk) score circle */
#solana-tab .score-circle {
    border-color: #FDD835;
    color: #FDD835;
}

/* Score value text color */
.score-value {
    font-size: 22px;
    font-weight: 600;
}

.risk-level .low {
    background-color: rgba(76, 175, 80, 0.1);
    color: #2E7D32;
}

.score-label {
    font-size: 0.7rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.score-components {
    padding: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.component-row:last-child {
    margin-bottom: 0;
}

.component-name {
    width: 150px;
    font-size: 0.8rem;
    color: var(--gray-700);
    display: flex;
    align-items: center;
}

.tooltip-icon {
    margin-left: 5px;
    width: 16px;
    height: 16px;
    border-radius: 8px;
    background-color: var(--gray-200);
    color: var(--gray-600);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    cursor: help;
    position: relative;
}

.tooltip-icon:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(33, 33, 33, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 10;
}

.component-bar-container {
    flex: 1;
}

.component-bar {
    height: 12px;
    background-color: var(--gray-200);
    border-radius: 6px;
    overflow: hidden;
}

.component-fill {
    height: 100%;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 8px;
    color: white;
    font-size: 10px;
    font-weight: 600;
}

.component-fill.success {
    background: linear-gradient(to right, #4CAF50, #2E7D32);
    /* Same as Ethereum score circle */
}

.component-fill.moderate {
    background: linear-gradient(to right, #FFEB3B, #FDD835);
    /* Same as Solana score circle */
}

.component-fill.danger {
    background: linear-gradient(to right, var(--danger), #C62828);
}

.component-fill.high-risk {
    background: linear-gradient(to right, #FF5722, #E64A19);
    /* Orange gradient */
}

.risk-reward-profile {
    padding: 20px;
}

.risk-reward-profile h4 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 1.1rem;
    color: var(--gray-800);
    text-align: center;
}

.profile-container {
    display: flex;
    gap: 20px;
}

.profile-column {
    flex: 1;
}

.profile-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.profile-icon {
    width: 24px;
    height: 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.profile-icon.safety {
    background-color: rgba(98, 0, 238, 0.1);
    color: var(--gray-600);
}

.profile-icon.growth {
    background-color: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.profile-title {
    font-weight: 500;
    color: var(--gray-800);
}

.profile-card {
    background-color: var(--gray-100);
    border-radius: 8px;
    padding: 16px;
}

.risk-level,
.growth-level {
    font-weight: 600;
    margin-bottom: 12px;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
    font-size: 0.9rem;
}

.risk-level.high,
.growth-level.high {
    background-color: #FFEBEE;
    color: #C62828;
}

.risk-level.moderate,
.growth-level.moderate {
    background-color: rgba(255, 235, 59, 0.1);
    /* Light yellow background */
    color: #F9A825;
    /* Darker yellow text for contrast */
}

.risk-level.low {
    background-color: rgba(76, 175, 80, 0.1);
    /* Light green background */
    color: #2E7D32;
    /* Dark green text */
}

.risk-factors,
.growth-factors {
    padding-left: 20px;
    margin: 0;
    font-size: 0.85rem;
    color: var(--gray-700);
}

.risk-factors li,
.growth-factors li {
    margin-bottom: 8px;
    line-height: 1.4;
}

.risk-factors li:last-child,
.growth-factors li:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .profile-container {
        flex-direction: column;
    }

    .component-name {
        padding: 3px;
    }

    .crypto-title {
        flex: auto;
    }

    .alert-title {
        display: block;
    }

    .component-row {
        margin: 0px;
    }
}

/* Tab System Styling */
.scorecard-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--gray-200);
}

.tab-button {
    padding: 12px 20px;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-700);
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}

.tab-button:hover {
    color: var(--primary);
}

.tab-button.active {
    color: var(--primary);
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Update the high risk indicators for Solana */
#solana-tab .risk-level.high,
#solana-tab .growth-level.high {
    background-color: rgba(255, 235, 59, 0.15);
    /* Same yellow background */
    color: #F9A825;
    /* Same yellow text */
}

/* AI Insights Section Styles */
.ai-insights-section {
    padding: 80px 0;
    background-color: white;
}

.insights-showcase {
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
    padding: 20px;
    background-color: var(--gray-100);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.insight-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.insight-header {
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--gray-200);
    background-color: rgba(98, 0, 238, 0.03);
}

.insight-title-container {
    display: flex;
    align-items: center;
}

.insight-icon {
    width: 32px;
    height: 32px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.insight-icon.technical {
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--success);
}

.insight-icon.market {
    background-color: rgba(255, 160, 0, 0.1);
    color: var(--warning);
}

.insight-title {
    font-size: 16px;
    font-weight: 500;
}

.insight-timestamp {
    font-size: 12px;
    color: var(--gray-500);
}

.insight-content {
    padding: 16px;
}

.impact-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 8px;
}

.impact-badge svg {
    margin-right: 4px;
}

.impact-badge.positive {
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--success);
}

.insight-description {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 16px;
}

.insight-token-tag {
    display: inline-flex;
    align-items: center;
    background-color: rgba(98, 0, 238, 0.1);
    color: var(--primary);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    margin-right: 6px;
}

.insight-token-tag.eth {
    background-color: rgba(98, 126, 234, 0.1);
    color: #627eea;
}

/* Source Attribution Styles */
.source-attribution {
    display: flex;
    border-top: 1px solid var(--gray-200);
    padding-top: 12px;
}

.source-attribution-text {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.source-badge {
    display: inline-flex;
    padding: 2px 8px;
    background-color: var(--gray-200);
    border-radius: 4px;
    font-size: 12px;
    color: var(--gray-600);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .insights-showcase {
        padding: 15px;
    }

    .source-attribution-text {
        flex-direction: column;
        gap: 4px;
    }
}

@media (max-width: 768px) {
    .feature-container {
        flex-direction: column;
    }

    .feature-content {
        order: 1;
        margin-top: 30px;
    }

    .feature-visual {
        order: 0;
    }

    .insights-showcase {
        max-width: 100%;
    }

    .insight-card {
        width: 100%;
    }

    .score-label {
        font-size: 0.4rem;
    }

    .risk-reward-profile {
        padding: 0 16px 0;
    }
}

/* Enhanced How it Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: var(--gray-100);
}

.steps {
    max-width: 800px;
    margin: 40px auto 0;
    position: relative;
}

/* Improved Progress Line with Gradient */
.steps::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 40px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-light), var(--primary));
    z-index: 0;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    border-radius: 20px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(98, 0, 238, 0.3);
    transition: transform 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.1);
}

.step-content {
    flex: 1;
    background-color: white;
    padding: 24px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 3px solid transparent;
}

.step:hover .step-content {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--primary);
}

.step-title {
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--gray-800);
}

.step-description {
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Step icon styling */
.step-icon {
    float: right;
    width: 48px;
    height: 48px;
    border-radius: 24px;
    background-color: rgba(98, 0, 238, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 16px;
    margin-bottom: 10px;
}

.step-icon svg {
    color: var(--primary);
}

/* Beginner tag styling */
.beginner-tag {
    display: inline-block;
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--success);
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 16px;
}

/* Final CTA styling */
.final-flow-cta {
    margin: 40px 0 0 60px;
    position: relative;
    z-index: 2;
}

.cta-content {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    border-radius: 8px;
    padding: 24px;
    color: white;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta-headline {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.cta-footnote {
    font-size: 0.9rem;
    margin-top: 12px;
    opacity: 0.9;
}

.final-flow-cta .btn {
    padding: 10px 24px;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .step-icon {
        float: none;
        margin: 0 0 16px 0;
    }

    .final-flow-cta {
        margin-left: 0;
    }

    .steps::after {
        left: 20px;
    }
}

/* Screenshots section */
.screenshots {
    padding: 80px 0;
    background-color: white;
}

.screenshots-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.screenshot-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.screenshot-tab {
    padding: 8px 16px;
    background-color: var(--gray-200);
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.screenshot-tab.active {
    background-color: var(--primary);
    color: white;
}

.screenshot {
    max-width: 80%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-300);
    display: none;
}

.screenshot.active {
    display: block;
}

/* Pricing section */
.pricing {
    padding: 80px 0;
    background-color: var(--gray-100);
}

.pricing-tiers {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background-color: white;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    padding: 30px;
    width: 300px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.pricing-card.featured {
    border-color: var(--primary);
    border-width: 2px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 20px;
}

.pricing-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 500;
}

.pricing-period {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.pricing-features {
    list-style: none;
    margin: 20px 0;
}

.pricing-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.pricing-features li::before {
    content: '✓';
    color: var(--success);
    margin-right: 10px;
    font-weight: bold;
}

.pricing-cta {
    text-align: center;
}

/* Updated Pricing Section Styles */
.pricing-tiers {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
    max-width: 1100px;
    /* Increased max-width for wider cards */
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background-color: white;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    padding: 30px;
    width: 450px;
    /* Increased width from 300px */
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-tag {
    position: absolute;
    top: 12px;
    right: -35px;
    background: var(--primary-light);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 40px;
    transform: rotate(45deg);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.price-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.original-price {
    font-size: 1.5rem;
    color: var(--gray-500);
    text-decoration: line-through;
    position: relative;
}

.netflix-compare {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-top: 8px;
    font-style: italic;
}

.highlight {
    color: var(--primary);
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    margin: 20px 0;
    min-height: 240px;
    /* Ensures consistent height across cards */
}

.pricing-features li {
    margin-bottom: 12px;
    line-height: 1.4;
    text-align: left;
    position: relative;
    padding-left: 24px;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.pricing-card.featured .pricing-features li::before {
    color: var(--primary);
}

.pricing-card.featured {
    border-color: var(--primary);
    border-width: 2px;
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .pricing-card {
        width: 400px;
    }
}

@media (max-width: 768px) {
    .pricing-card {
        width: 100%;
        max-width: 450px;
    }
}

.coming-soon-badge {
    display: inline-block;
    background-color: var(--warning);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

/* Testimonials section */
.testimonials {
    padding: 80px 0;
    background-color: var(--gray-100);
}

.testimonials-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: var(--shadow);
    max-width: 350px;
    transition: transform 0.3s ease;
}

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

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--gray-700);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-disclaimer {
    text-align: center;
    margin-top: 20px;
    padding: 0 20px;
}

.testimonial-disclaimer p {
    color: var(--gray-600);
    font-size: 0.75rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 25px;
    /* Keep this for circular shape */
    margin-right: 15px;
    overflow: hidden;
    /* Add this to clip the image to the circular shape */
    background-color: var(--gray-300);
    /* Keep as fallback */
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* This ensures the image covers the area properly */
}

.author-details h4 {
    margin-bottom: 0;
}

.author-title {
    font-size: 0.8rem;
    color: var(--gray-600);
}

/* Details/Summary based styling */
.faq {
    padding: 80px 0;
    background-color: white;
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    background-color: white;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-question {
    position: relative;
    width: 100%;
    padding: 24px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    list-style: none;
}

.faq-question:hover {
    color: var(--primary-dark);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item[open] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 24px;
}

.faq-answer p {
    color: var(--gray-700);
    line-height: 1.6;
    margin: 0;
}

/* Active state styling */
.faq-item[open] .faq-question {
    border-bottom: 1px solid var(--gray-200);
    background-color: rgba(98, 0, 238, 0.03);
}

/* Focus styles for accessibility */
.faq-question:focus {
    outline: 2px solid var(--primary-light);
    outline-offset: -2px;
}

/* Add media queries for responsive design */
@media (max-width: 768px) {
    .faq-question {
        padding: 16px;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 16px 16px;
    }
}

/* Final CTA section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="none" width="100" height="100"/><path fill="rgba(255,255,255,0.05)" d="M30,10L80,90M50,10L90,80M70,10L100,70M10,30L90,80M10,50L80,90M10,70L70,100"/></svg>');
    background-size: 150px;
    opacity: 0.3;
}

.final-cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background-color: var(--gray-900);
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-column {
    margin-bottom: 20px;
}

.footer-column h3 {
    color: var(--gray-300);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Additional styles for address */
.footer-contact {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.footer-contact-item:hover {
    color: white;
}

.footer-contact-item svg {
    margin-right: 8px;
    color: var(--primary-light);
    flex-shrink: 0;
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-color: var(--gray-800);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary);
}

.copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-800);
    text-align: center;
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* Email signup form styles */
.email-signup {
    padding: 30px 0;
    background-color: var(--gray-100);
    text-align: center;
}

.email-form {
    display: flex;
    max-width: 500px;
    margin: 20px auto;
}

.email-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 1rem;
    color: var(--gray-800);
}

.email-form button {
    border-radius: 0 4px 4px 0;
    padding: 12px 20px;
}

.privacy-note {
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-top: 10px;
}

/* Modal for email form submission */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 200;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.modal-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(124, 77, 255, 0.1);
    /* Light purple using primary-light */
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.modal-icon svg {
    width: 30px;
    height: 30px;
    color: var(--primary-light);
    /* #7c4dff - Slightly lighter purple for better contrast */
}

#signup-modal .modal-title {
    color: var(--primary);
    /* #6200EE - Primary purple */
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.modal-message {
    margin-bottom: 20px;
    color: var(--gray-700);
}

.modal-close {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.modal-close:hover {
    background-color: var(--primary-dark);
}

/* Expandable Features Grid Styles */
.expandable-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    margin-top: 40px;
}

.feature-card {
    background-color: var(--gray-100);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border-left: 3px solid var(--primary);
    overflow: hidden;
}

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

.feature-card-header {
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.expand-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 20px auto 0;
    background-color: rgba(98, 0, 238, 0.05);
    border: 1px solid var(--primary);
    color: var(--primary);
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
    width: fit-content;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.expand-toggle:hover {
    background-color: rgba(98, 0, 238, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.expand-toggle svg {
    transition: transform 0.3s ease;
}

.expand-toggle:hover svg {
    transform: translateY(2px);
}

.feature-card.expanded .expand-toggle svg {
    transform: rotate(180deg);
}

.feature-card-content {
    display: none;
    padding: 0 25px 25px 25px;
    border-top: 1px solid var(--gray-300);
    background-color: white;
}

.feature-card.expanded .feature-card-content {
    display: block;
    animation: fadeInContent 0.4s ease-out;
}

.feature-card.expanded {
    grid-column: 1 / -1;
    /* Span all columns when expanded */
    z-index: 5;
}

/* Container for expanded content */
.expanded-details-container {
    width: 100%;
    grid-column: 1 / -1;
    background-color: white;
    border-radius: 8px;
    margin: 20px 0;
    padding: 30px;
    box-shadow: var(--shadow-lg), 0 0 0 3px rgba(98, 0, 238, 0.1);
    position: relative;
    border-left: 4px solid var(--primary);
    animation: fadeInExpand 0.3s ease-out;
    overflow: hidden;
}

/* Visual indicator to connect expanded content with its card */
.expanded-details-container::before {
    content: '';
    position: absolute;
    top: -15px;
    /* Positioned slightly higher for better visibility */
    width: 30px;
    /* Larger arrow */
    height: 30px;
    /* Larger arrow */
    background-color: var(--primary-light);
    /* Purple color matching the brand */
    transform: rotate(45deg);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Add content label to expanded section */
.expanded-details-container::after {
    content: 'Expanded Details';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    opacity: 0.8;
}

/* Stronger active card highlight */
.feature-card.active-card {
    border-color: var(--primary);
    border-width: 3px;
    box-shadow: 0 0 0 3px rgba(98, 0, 238, 0.2), var(--shadow-md);
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

/* Indicator position classes - will be added dynamically */
.expanded-details-container.from-position-1::before {
    left: 16.6%;
}

.expanded-details-container.from-position-2::before {
    left: 50%;
}

.expanded-details-container.from-position-3::before {
    left: 83.3%;
}

/* Important: Modify the expandable grid to handle full-width inserted rows */
.expandable-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
}

/* Force a new row for the expanded content by using grid-column property */
.expandable-grid>.expanded-details-container {
    grid-column: 1 / -1;
}

@media (max-width: 992px) {
    .expandable-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .expanded-details-container.from-position-1::before {
        left: 25%;
    }

    .expanded-details-container.from-position-2::before {
        left: 75%;
    }
}

@media (max-width: 576px) {
    .expandable-grid {
        grid-template-columns: 1fr;
    }

    .expanded-details-container.from-position-1::before,
    .expanded-details-container.from-position-2::before,
    .expanded-details-container.from-position-3::before {
        left: 50%;
    }
}

.placeholder-visual {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gray-200);
    border-radius: 8px;
    color: var(--gray-600);
    font-style: italic;
}

@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subtle pulse animation for the arrow */
@keyframes pulsateArrow {
    0% {
        transform: rotate(45deg) scale(1);
    }

    50% {
        transform: rotate(45deg) scale(1.1);
    }

    100% {
        transform: rotate(45deg) scale(1);
    }
}

.expanded-details-container::before {
    animation: pulsateArrow 2s ease-in-out infinite;
}

/* Connecting line from card to expanded content */
.active-card::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 2px;
    height: 15px;
    background-color: var(--primary);
    z-index: 0;
}

.disclaimer-section {
    background-color: var(--gray-900);
    padding: 30px 0;
    border-top: 1px solid var(--gray-800);
}

.disclaimer-title {
    color: var(--gray-400);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.disclaimer-content {
    font-size: 0.75rem;
    color: var(--gray-500);
    line-height: 1.5;
    text-align: left;
}

.disclaimer-content p {
    margin-bottom: 12px;
}

.disclaimer-content a {
    color: var(--primary-light);
    text-decoration: underline;
}

.disclaimer-content a:hover {
    color: var(--primary);
}

/* Market Updates Demo Styles */
.market-updates-demo {
    padding: 20px;
    max-width: 500px;
    margin: 0 auto;
    background-color: var(--gray-100);
    border-radius: 8px;
}

.sentiment-meter-wrapper {
    margin: 20px 0;
    position: relative;
}

.sentiment-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.sentiment-label {
    font-size: 12px;
    font-weight: 500;
}

.sentiment-label.bearish {
    color: var(--danger);
}

.sentiment-label.neutral {
    color: var(--warning);
}

.sentiment-label.bullish {
    color: var(--success);
}

.sentiment-meter {
    height: 6px;
    background: linear-gradient(90deg, var(--danger) 0%, var(--warning) 50%, var(--success) 100%);
    border-radius: 3px;
    margin-bottom: 24px;
    position: relative;
}

.meter-indicator {
    position: absolute;
    top: -4px;
    width: 14px;
    height: 14px;
    border-radius: 7px;
    background-color: var(--gray-800);
    transform: translateX(-50%);
}

.meter-value {
    position: absolute;
    top: 16px;
    left: 65%;
    transform: translateX(-50%);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.meter-explanation {
    font-size: 13px;
    color: var(--gray-600);
    margin-top: 36px;
    line-height: 1.5;
}

/* Social Sentiment Analysis Styles */
.social-sentiment {
    padding-top: 15px;
    border-top: 1px solid var(--gray-200);
}

.social-metrics {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.social-metric {
    margin-bottom: 10px;
}

.metric-name {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 5px;
}

.platform-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
}

.platform-icon.twitter {
    color: #1DA1F2;
}

.platform-icon.reddit {
    color: #FF4500;
}

.metric-value {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.sentiment-bar {
    display: flex;
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.sentiment-positive {
    height: 100%;
    background-color: var(--success);
}

.sentiment-negative {
    height: 100%;
    background-color: var(--danger);
}

.trend-indicator {
    margin-left: auto;
    font-size: 11px;
    font-weight: 500;
    padding: 2px 6px;
    border-radius: 4px;
}

.trend-indicator.up {
    color: white;
    background-color: var(--success);
}

.trend-indicator.stable {
    color: white;
    background-color: var(--warning);
}

.trend-indicator.down {
    color: white;
    background-color: var(--danger);
}

.security-context {
    margin-top: 16px;
    padding: 10px 12px;
    background-color: white;
    border-radius: 6px;
    border-left: 3px solid var(--primary);
}

.context-title {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary);
}

.context-text {
    font-size: 12px;
    color: var(--gray-700);
    line-height: 1.5;
}

/* Signup Modal Styles */
.modal-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: var(--gray-600);
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s, color 0.2s;
}

.modal-close-btn:hover {
    background-color: var(--gray-200);
    color: var(--gray-900);
}

.modal-email-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin: 20px 0;
}

.modal-email-form input {
    padding: 12px 15px;
    border: 1px solid var(--gray-300);
    border-radius: 4px;
    font-size: 1rem;
    color: var(--gray-800);
}

.modal-email-form .btn {
    padding: 12px 20px;
}

/* Animation for modal */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal.active .modal-content {
    animation: modalFadeIn 0.3s ease forwards;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .modal-content {
        width: calc(100% - 40px);
        max-width: none;
        margin: 0 20px;
    }

    .modal-email-form {
        flex-direction: column;
    }

    .modal-email-form input,
    .modal-email-form .btn {
        width: 100%;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sentiment-meter-wrapper {
        margin: 10px 0;
    }

    .meter-explanation {
        margin-top: 48px;
    }

    .social-metrics {
        gap: 12px;
    }
}

/* Enhanced footer styling */
.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.logo-icon {
    width: 85px;
    height: 85px;
}

.logo-text {
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
}

.footer-tagline {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--gray-400);
}

.footer-heading {
    color: var(--gray-300);
    margin-bottom: 15px;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-light);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    color: var(--gray-400);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-contact-item:hover {
    color: white;
}

.footer-contact-item svg {
    margin-right: 8px;
    color: var(--primary-light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--gray-900);
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: block;
    /* Changed from 'none' to 'block' */
    opacity: 0;
    /* Start with opacity 0 */
    transform: translateY(100%);
    /* Start off-screen */
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-banner.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Rest of the CSS remains the same */
.cookie-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-text {
    color: var(--gray-300);
    font-size: 0.9rem;
    margin: 0;
    flex: 1;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cookie-button {
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-button:hover {
    background-color: var(--primary-dark);
}

.cookie-link {
    color: var(--primary-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.cookie-link:hover {
    text-decoration: underline;
}

/* Trust Badges Section */
.trust-badges-section {
    background-color: rgba(33, 33, 33, 0.8);
    padding: 25px 0;
    border-top: 1px solid var(--gray-800);
    border-bottom: 1px solid var(--gray-800);
}

.trust-badges-heading {
    text-align: center;
    color: var(--gray-300);
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 500;
}

.trust-badges {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
}

.trust-badge:hover {
    transform: translateY(-5px);
}

.badge-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
}

.badge-text {
    font-size: 0.85rem;
    color: var(--gray-400);
    font-weight: 500;
    margin-top: 8px;
}

.trust-badge img {
    height: 40px;
    object-fit: contain;
}

.aws-badge {
    height: 30px !important;
}

.payment-cards-container {
    margin-top: 8px;
}

.payment-cards {
    height: auto;
    width: 150px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .trust-badges {
        gap: 20px;
    }

    .trust-badge {
        padding: 5px;
    }

    .badge-icon {
        width: 40px;
        height: 40px;
    }

    .badge-text {
        font-size: 0.75rem;
    }

    .trust-badge img {
        height: 30px;
    }

    .aws-badge {
        height: 25px !important;
    }

    .payment-cards {
        width: 120px;
    }
}

@media (max-width: 576px) {
    .trust-badges {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .payment-cards {
        width: 100px;
    }
}

/* Data Privacy Compliance Section */
.compliance-badges {
    text-align: center;
    margin-bottom: 35px;
}

.compliance-title {
    color: var(--gray-400);
    font-size: 0.85rem;
}

.badges-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: transform 0.3s ease;
}

.badge:hover {
    transform: translateY(-5px);
}

/* For responsive design */
@media (max-width: 768px) {
    .badges-container {
        gap: 20px;
    }

}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background-color: var(--primary-dark);
}

@media (max-width: 768px) {
    .cookie-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
        justify-content: space-between;
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .expandable-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .expandable-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero {
        padding: 50px 0;
    }

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

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

    .product-descriptor {
        font-size: 1rem;
    }

    .email-form {
        flex-direction: column;
    }

    .email-form input {
        border-radius: 4px;
        margin-bottom: 10px;
    }

    .email-form button {
        border-radius: 4px;
        width: 100%;
    }

    .all-in-one-banner {
        padding: 15px 0;
    }

    .all-in-one-text {
        font-size: 1.1rem;
    }

    /* Hamburger menu */
    .nav-list {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 10px 0;
        box-shadow: var(--shadow);
    }

    .nav-list.active {
        display: flex;
    }

    .nav-item {
        margin: 10px 20px;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .hamburger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .hamburger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .problem-solution,
    .value-trio,
    .features,
    .how-it-works,
    .screenshots,
    .ai-insights,
    .pricing,
    .final-cta,
    .crypto-scorecard-section,
    .scam-detector-section,
    .portfolio-analysis-section,
    .risk-alerts-section {
        padding: 50px 0;
    }

    .scorecard-container,
    .feature-container {
        flex-direction: column;
    }

    .feature-card,
    .problem-card,
    .pricing-card,
    .insight-card,
    .value-card {
        width: 100%;
    }

    .scorecard-visual,
    .feature-visual {
        max-width: 100%;
    }

    .testimonials-container,
    .pricing-tiers {
        flex-direction: column;
        align-items: center;
    }

    .screenshot-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }

    .steps::after {
        left: 20px;
    }
}