/* ===================================
   Bloom Bot - Modern Trading Bot Site
   =================================== */

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

:root {
    /* Color Palette - Modern Purple & Blue with Bloom theme */
    --primary: #9333ea;
    --primary-dark: #7e22ce;
    --primary-light: #a855f7;
    --secondary: #3b82f6;
    --accent: #ec4899;
    --success: #10b981;
    --warning: #f59e0b;

    /* Neutrals */
    --dark: #0f172a;
    --dark-light: #1e293b;
    --dark-lighter: #334155;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --light: #f8fafc;
    --white: #ffffff;

    /* Typography */
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    --font-mono: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, monospace;

    /* Spacing */
    --section-padding: 80px 0;
    --container-width: 1200px;

    /* Shadows */
    --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);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--dark);
    background: var(--light);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

h1 { font-size: 3rem; margin-bottom: 1rem; }
h2 { font-size: 2.5rem; margin-bottom: 1rem; }
h3 { font-size: 1.75rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--gray);
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* Buttons */
.primary-button, .secondary-button, .cta-button {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.primary-button {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

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

.primary-button.large {
    padding: 18px 48px;
    font-size: 1.1rem;
}

.secondary-button {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.secondary-button:hover {
    background: var(--primary);
    color: var(--white);
}

.cta-button {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 10px 24px;
    font-size: 0.95rem;
}

.cta-button:hover {
    background: var(--primary);
    color: var(--white);
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    color: var(--dark-lighter);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--primary);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--white);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(147, 51, 234, 0.15), transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.15), transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 24px;
}

.hero .highlight {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-light);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 50px 0;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 8px;
}

.stat-label {
    color: var(--gray-light);
    font-size: 1rem;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
}

.trust-badge {
    margin-top: 32px;
    color: var(--gray-light);
    font-size: 0.95rem;
}

/* ===================================
   SECTIONS
   =================================== */
section {
    padding: var(--section-padding);
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

section h2 {
    text-align: center;
    margin-bottom: 16px;
}

/* ===================================
   FEATURES OVERVIEW
   =================================== */
.features-overview {
    background: var(--white);
}

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

.feature-card {
    background: var(--light);
    padding: 32px;
    border-radius: 16px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    color: var(--dark);
    margin-bottom: 12px;
}

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

/* ===================================
   HOW IT WORKS
   =================================== */
.how-it-works {
    background: var(--light);
}

.steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    text-align: center;
    padding: 24px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.step p {
    font-size: 0.95rem;
}

.step-arrow {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
}

.cta-center {
    text-align: center;
    margin-top: 50px;
}

/* ===================================
   TRADING TOOLS
   =================================== */
.trading-tools {
    background: var(--white);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.tool-item {
    background: var(--light);
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}

.tool-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.tool-item h4 {
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.tool-item p {
    font-size: 0.95rem;
    margin: 0;
}

/* ===================================
   PERFORMANCE
   =================================== */
.performance {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

.performance h2 {
    color: var(--white);
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.performance-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.performance-card h3 {
    color: var(--white);
    margin-bottom: 12px;
}

.performance-card p {
    color: rgba(255, 255, 255, 0.9);
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-section p {
    color: var(--gray-light);
    font-size: 1.2rem;
    margin-bottom: 32px;
}

.cta-subtext {
    margin-top: 24px;
    font-size: 0.95rem;
    color: var(--gray-light);
}

/* ===================================
   PAGE HEADER (for inner pages)
   =================================== */
.page-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 16px;
}

.page-header p {
    color: var(--gray-light);
    font-size: 1.2rem;
}

/* ===================================
   FEATURES PAGE
   =================================== */
.features-detailed {
    background: var(--white);
}

.feature-detail {
    margin-bottom: 60px;
    padding: 40px;
    background: var(--light);
    border-radius: 16px;
}

.feature-content h3 {
    color: var(--dark);
    margin-bottom: 16px;
    font-size: 1.75rem;
}

.feature-lead {
    font-size: 1.1rem;
    color: var(--dark-lighter);
    margin-bottom: 24px;
    font-weight: 500;
}

.feature-list {
    list-style: none;
    margin: 24px 0;
}

.feature-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    color: var(--gray);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
    font-size: 1.2rem;
}

.feature-note {
    background: var(--white);
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    margin-top: 24px;
    font-style: italic;
    color: var(--dark-lighter);
}

.feature-link {
    display: inline-block;
    margin-top: 16px;
    color: var(--primary);
    font-weight: 600;
}

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

/* Advanced Features */
.advanced-features {
    background: var(--light);
}

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

.advanced-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.advanced-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.advanced-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.advanced-card h4 {
    margin-bottom: 12px;
    color: var(--dark);
}

/* Platform Support */
.platform-support {
    background: var(--white);
}

.chains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.chain-card {
    background: var(--light);
    padding: 32px;
    border-radius: 12px;
    position: relative;
    transition: var(--transition);
}

.chain-card.primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

.chain-card.primary h3,
.chain-card.primary p {
    color: var(--white);
}

.chain-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.chain-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-top: 16px;
    font-weight: 600;
}

/* Growth Features */
.growth-features {
    background: var(--light);
}

.growth-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.growth-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.growth-card h3 {
    margin-bottom: 12px;
}

/* Customization */
.customization {
    background: var(--white);
}

.custom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.custom-item {
    background: var(--light);
    padding: 24px;
    border-radius: 12px;
    border-top: 4px solid var(--secondary);
}

.custom-item h4 {
    color: var(--dark);
    margin-bottom: 8px;
}

.custom-item p {
    font-size: 0.95rem;
    margin: 0;
}

/* ===================================
   HOW IT WORKS PAGE
   =================================== */
.quick-start {
    background: var(--white);
}

.steps-detailed {
    margin-top: 50px;
}

.step-detailed {
    display: flex;
    gap: 32px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.step-number-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin-bottom: 16px;
    color: var(--dark);
}

.step-content ul {
    margin: 16px 0 16px 24px;
    color: var(--gray);
}

.step-content li {
    margin-bottom: 8px;
}

.note {
    background: var(--light);
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid var(--warning);
    margin-top: 16px;
    font-size: 0.95rem;
    color: var(--dark-lighter);
}

/* Trading Methods */
.trading-methods {
    background: var(--light);
}

.method-detail {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 32px;
}

.method-detail h3 {
    color: var(--dark);
    margin-bottom: 12px;
}

.method-intro {
    font-size: 1.1rem;
    color: var(--dark-lighter);
    margin-bottom: 24px;
}

.method-steps ol {
    margin: 24px 0 24px 32px;
    color: var(--gray);
}

.method-steps li {
    margin-bottom: 12px;
    padding-left: 8px;
}

.method-tip {
    background: var(--light);
    padding: 16px;
    border-radius: 8px;
    margin-top: 24px;
    border-left: 4px solid var(--success);
}

.method-link {
    display: inline-block;
    margin-top: 16px;
    color: var(--primary);
    font-weight: 600;
}

/* Wallet Management */
.wallet-management {
    background: var(--white);
}

.wallet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.wallet-feature {
    background: var(--light);
    padding: 24px;
    border-radius: 12px;
}

.wallet-feature h4 {
    color: var(--dark);
    margin-bottom: 8px;
}

/* Settings Section */
.settings-section {
    background: var(--light);
}

.settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.setting-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.setting-card h4 {
    color: var(--dark);
    margin-bottom: 12px;
}

/* Platform Access */
.platform-access {
    background: var(--white);
}

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

.access-card {
    background: var(--light);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}

.access-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.access-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.access-card h3 {
    margin-bottom: 12px;
}

.access-link {
    display: inline-block;
    margin-top: 16px;
    color: var(--primary);
    font-weight: 600;
}

/* Tips Section */
.tips-section {
    background: var(--light);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.tip-card {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}

.tip-card h4 {
    color: var(--dark);
    margin-bottom: 8px;
}

.tip-card p {
    font-size: 0.95rem;
    margin: 0;
}

/* ===================================
   SOLANA TRADING PAGE
   =================================== */
.solana-header {
    background: linear-gradient(135deg, #9333ea 0%, #3b82f6 100%);
}

.why-solana {
    background: var(--white);
}

.solana-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.benefit-card {
    background: var(--light);
    padding: 40px;
    border-radius: 16px;
    transition: var(--transition);
}

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

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    margin-bottom: 16px;
    color: var(--dark);
}

.benefit-card ul {
    list-style: none;
    margin-top: 20px;
}

.benefit-card li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--gray);
}

.benefit-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* Performance Comparison */
.performance-comparison {
    background: var(--light);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.comparison-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
}

.comparison-metric {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

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

.metric-description {
    color: var(--gray);
    font-size: 0.9rem;
}

.comparison-note {
    text-align: center;
    margin-top: 32px;
    font-size: 0.9rem;
    color: var(--gray);
    font-style: italic;
}

/* Solana Features */
.solana-features {
    background: var(--white);
}

.feature-detail-solana {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 40px;
    background: var(--light);
    border-radius: 16px;
}

.feature-icon-large {
    font-size: 4rem;
    flex-shrink: 0;
}

.feature-content-solana {
    flex: 1;
}

.feature-content-solana h3 {
    margin-bottom: 12px;
    color: var(--dark);
}

.feature-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.highlight-badge {
    background: var(--primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Technical Advantages */
.technical-advantages {
    background: var(--light);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.tech-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.tech-card h4 {
    color: var(--dark);
    margin-bottom: 12px;
}

/* Bridging Section */
.bridging-section {
    background: var(--white);
}

.bridge-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.bridge-chains {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.bridge-chain {
    background: var(--light);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
}

.bridge-chain h4 {
    color: var(--dark);
    margin-bottom: 8px;
}

.bridge-chain p {
    font-size: 0.9rem;
    margin: 0;
}

/* Use Cases */
.use-cases {
    background: var(--light);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.case-card {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    border-top: 4px solid var(--secondary);
}

.case-card h4 {
    color: var(--dark);
    margin-bottom: 8px;
}

.case-card p {
    font-size: 0.95rem;
    margin: 0;
}

/* Safety Features */
.safety-features {
    background: var(--white);
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.safety-card {
    background: var(--light);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
}

.safety-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.safety-card h4 {
    color: var(--dark);
    margin-bottom: 12px;
}

/* ===================================
   COPY TRADING PAGE
   =================================== */
.copy-header {
    background: linear-gradient(135deg, #ec4899 0%, #9333ea 100%);
}

.slot-perfect {
    background: var(--white);
}

.slot-explanation {
    max-width: 900px;
    margin: 50px auto 0;
    background: var(--light);
    padding: 48px;
    border-radius: 16px;
}

.slot-content h3 {
    color: var(--dark);
    margin-bottom: 20px;
}

.slot-content p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.slot-benefits {
    margin-top: 32px;
}

.slot-benefit {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.benefit-check {
    width: 32px;
    height: 32px;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.slot-benefit h4 {
    margin-bottom: 4px;
    color: var(--dark);
}

.slot-benefit p {
    margin: 0;
}

/* Copy How It Works */
.copy-how-it-works {
    background: var(--light);
}

.copy-steps {
    margin-top: 50px;
}

.copy-step {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.step-number-copy {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content-copy {
    flex: 1;
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
}

.step-content-copy h3 {
    margin-bottom: 12px;
    color: var(--dark);
}

/* Copy Features */
.copy-features {
    background: var(--white);
}

.copy-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.copy-feature-card {
    background: var(--light);
    padding: 32px;
    border-radius: 16px;
    transition: var(--transition);
}

.copy-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon-copy {
    font-size: 3rem;
    margin-bottom: 16px;
}

.copy-feature-card h3 {
    margin-bottom: 12px;
    color: var(--dark);
}

.copy-feature-card ul {
    list-style: none;
    margin-top: 16px;
}

.copy-feature-card li {
    padding: 6px 0 6px 24px;
    position: relative;
    color: var(--gray);
    font-size: 0.95rem;
}

.copy-feature-card li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Copy Use Cases */
.copy-use-cases {
    background: var(--light);
}

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

.use-case-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
}

.use-case-card h3 {
    color: var(--dark);
    margin-bottom: 12px;
}

.use-case-example {
    background: var(--light);
    padding: 16px;
    border-radius: 8px;
    margin-top: 16px;
    font-size: 0.95rem;
    border-left: 3px solid var(--primary);
}

/* Finding Wallets */
.finding-wallets {
    background: var(--white);
}

.sources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.source-card {
    background: var(--light);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
}

.source-card h4 {
    color: var(--dark);
    margin-bottom: 8px;
}

.source-card p {
    font-size: 0.95rem;
    margin: 0;
}

/* Best Practices */
.best-practices {
    background: var(--light);
}

.practices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.practice-card {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--success);
}

.practice-card h4 {
    color: var(--dark);
    margin-bottom: 8px;
}

.practice-card p {
    font-size: 0.95rem;
    margin: 0;
}

/* Technical Copy */
.technical-copy {
    background: var(--white);
}

.tech-advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.tech-advantage-card {
    background: var(--light);
    padding: 32px;
    border-radius: 12px;
}

.tech-advantage-card h4 {
    color: var(--dark);
    margin-bottom: 12px;
}

/* Getting Started Copy */
.getting-started-copy {
    background: var(--light);
}

.start-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.start-step-card {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    min-width: 140px;
    flex: 1;
    max-width: 180px;
}

.start-num {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 16px;
}

.start-step-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.start-step-card p {
    font-size: 0.85rem;
    margin: 0;
}

.start-arrow {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
}

/* ===================================
   FAQ PAGE
   =================================== */
.faq-content {
    background: var(--white);
}

.faq-category {
    margin-bottom: 60px;
}

.faq-category h2 {
    text-align: left;
    color: var(--dark);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--primary);
}

.faq-item {
    background: var(--light);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.faq-item h3 {
    color: var(--dark);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.faq-item p {
    margin: 0;
    line-height: 1.7;
}

.faq-item a {
    color: var(--primary);
    font-weight: 600;
}

/* More Help */
.more-help {
    background: var(--light);
    text-align: center;
}

.help-options {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.help-button {
    background: var(--primary);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

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

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--dark);
    color: var(--gray-light);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.footer-col p {
    color: var(--gray-light);
    font-size: 0.95rem;
}

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

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

.footer-col a {
    color: var(--gray-light);
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--primary-light);
}

.footer-col ul.keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-col ul.keywords li {
    background: var(--dark-lighter);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    margin-bottom: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--dark-lighter);
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 968px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .nav-menu {
        display: none;
    }

    .hero {
        padding: 80px 0;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .steps {
        flex-direction: column;
    }

    .step-arrow, .start-arrow {
        transform: rotate(90deg);
    }

    .step-detailed,
    .copy-step,
    .feature-detail-solana {
        flex-direction: column;
        text-align: center;
    }

    .step-number-large,
    .step-number-copy {
        margin: 0 auto 20px;
    }

    .features-grid,
    .tools-grid,
    .chains-grid,
    .copy-features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }

    section {
        padding: 50px 0;
    }

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

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

    .primary-button,
    .secondary-button {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .primary-button.large {
        padding: 14px 32px;
        font-size: 1rem;
    }

    .feature-card,
    .method-detail,
    .slot-explanation {
        padding: 24px;
    }
}

/* ===================================
   UTILITIES
   =================================== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.hidden {
    display: none;
}

/* Smooth scroll padding for fixed nav */
html {
    scroll-padding-top: 80px;
}
