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

:root {
    --bg: #0a0a0a;
    --bg-elevated: #111111;
    --bg-hover: #1a1a1a;
    --text: #ffffff;
    --text-muted: #888888;
    --text-subtle: #555555;
    --accent: #00ff88;
    --accent-dark: #00cc6f;
    --accent-glow: rgba(0, 255, 136, 0.4);
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(0, 255, 136, 0.3);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Grid Background */
.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

/* Cursor Trail */
.cursor-trail {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, opacity 0.2s;
    opacity: 0.8;
    box-shadow: 0 0 20px var(--accent-glow);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 32px;
    backdrop-filter: blur(20px) saturate(180%);
    background: rgba(10, 10, 10, 0.8);
    border-bottom: 1px solid var(--border);
}

.nav-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.nav-logo-img:hover {
    transform: scale(1.1) rotate(5deg);
}

.nav-logo {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-cta {
    background: var(--accent);
    color: var(--bg);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.nav-cta:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 255, 136, 0.3);
}

/* Hero */
.hero {
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.15) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent-glow);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
}

.title-line {
    display: block;
    background: linear-gradient(135deg, var(--text) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 100%;
}

.hero-highlight {
    color: var(--accent);
    font-weight: 600;
    text-shadow: 0 0 20px var(--accent-glow);
    animation: glow-text 2s ease-in-out infinite alternate;
}

@keyframes glow-text {
    from {
        text-shadow: 0 0 20px var(--accent-glow);
    }
    to {
        text-shadow: 0 0 30px var(--accent-glow), 0 0 40px var(--accent-glow);
    }
}

/* Contract Address Hero */
.ca-hero {
    margin-bottom: 40px;
}

.ca-label-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.ca-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.ca-network {
    font-size: 11px;
    padding: 4px 8px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    color: var(--text-muted);
    font-weight: 500;
}

.ca-input-wrapper {
    display: flex;
    gap: 12px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 4px;
    backdrop-filter: blur(20px) saturate(180%);
    transition: all 0.3s ease;
}

.ca-input-wrapper:hover {
    border-color: var(--border-hover);
    box-shadow: 0 0 0 1px var(--border-hover);
}

.ca-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 16px 20px;
    font-family: 'Geist Mono', monospace;
    font-size: 14px;
    color: var(--text);
    outline: none;
}

.ca-input::placeholder {
    color: var(--text-subtle);
}

.ca-copy {
    background: var(--accent);
    color: var(--bg);
    border: none;
    padding: 16px 20px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.ca-copy:hover {
    background: var(--accent-dark);
    transform: scale(1.05);
}

.ca-copy.copied {
    background: var(--accent-dark);
}

.ca-copy svg {
    width: 20px;
    height: 20px;
    position: absolute;
    transition: opacity 0.3s ease;
}

.ca-copy .check-icon {
    opacity: 0;
}

.ca-copy.copied .copy-icon {
    opacity: 0;
}

.ca-copy.copied .check-icon {
    opacity: 1;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 48px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-cta-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.hero-cta-btn {
    text-decoration: none;
    position: relative;
    background: var(--accent);
    color: var(--bg);
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-family: inherit;
    overflow: hidden;
    z-index: 1;
}

.hero-cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.hero-cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.hero-cta-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.5);
}

.hero-cta-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.cta-text {
    position: relative;
    z-index: 1;
}

.cta-arrow {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.hero-cta-btn:hover .cta-arrow {
    transform: translateX(8px);
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.4) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 16px;
}

.hero-cta-btn:hover .cta-glow {
    opacity: 1;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-variant-numeric: tabular-nums;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Hero Container */
.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 100%;
}

/* Hero Visual - Chart */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.chart-container {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 24px;
    backdrop-filter: blur(20px) saturate(180%);
    width: 100%;
    max-width: 450px;
    transition: all 0.3s ease;
}

.chart-container:hover {
    border-color: var(--border-hover);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.1);
    transform: translateY(-4px);
}

.chart-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 20px;
    text-align: center;
}

.chart-wrapper {
    width: 100%;
    height: 160px;
    margin-bottom: 12px;
}

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

.chart-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 2s ease-out forwards;
}

.chart-area {
    opacity: 0;
    animation: fadeInArea 1s ease-out 0.5s forwards;
}

.chart-dot {
    opacity: 0;
    animation: fadeInDot 0.5s ease-out 2s forwards;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeInArea {
    to {
        opacity: 1;
    }
}

@keyframes fadeInDot {
    to {
        opacity: 1;
    }
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--text) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    margin-top: 12px;
    font-weight: 400;
    display: none;
}

/* Strategy */
.strategy {
    padding: 140px 0;
    position: relative;
}

.strategy-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.strategy-content {
    max-width: 100%;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

/* Calculator */
.strategy-calculator {
    position: sticky;
    top: 120px;
}

.calculator-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 32px;
    backdrop-filter: blur(20px) saturate(180%);
    transition: all 0.3s ease;
}

.calculator-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.1);
}

.calculator-header {
    margin-bottom: 32px;
}

.calculator-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.calculator-subtitle {
    font-size: 14px;
    color: var(--text-muted);
}

.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.calc-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.calc-input-group label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.calc-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.calc-input-wrapper input {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    font-family: 'Geist Mono', monospace;
    text-align: right;
    transition: all 0.3s ease;
}

.calc-input-wrapper input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.calc-currency,
.calc-percent,
.calc-label {
    position: absolute;
    right: 16px;
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    pointer-events: none;
}

.calc-currency {
    left: 16px;
    right: auto;
}

.calculator-results {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.result-item:last-child {
    border-bottom: none;
}

.result-item.highlight {
    background: rgba(0, 255, 136, 0.1);
    margin: -12px;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.result-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.result-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    font-variant-numeric: tabular-nums;
    font-family: 'Geist Mono', monospace;
}

.result-item.highlight .result-value {
    color: var(--accent);
}

.result-value.zero {
    color: var(--accent);
}

.calc-button {
    width: 100%;
    background: var(--accent);
    color: var(--bg);
    border: none;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.calc-button:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 255, 136, 0.3);
}

.step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.step-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.step:hover .step-circle {
    border-color: var(--accent);
    box-shadow: 0 0 30px var(--accent-glow);
    transform: scale(1.1);
    background: rgba(0, 255, 136, 0.1);
}

.step-number {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
}

.step-line {
    width: 2px;
    height: 48px;
    background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
    margin-top: 16px;
}

.step:last-child .step-line {
    display: none;
}

.step-content {
    flex: 1;
    padding-top: 8px;
}

.step-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.step-description {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

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

/* Features */
.features {
    padding: 140px 0;
    background: var(--bg-elevated);
}

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

.feature {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.feature.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.2);
}

.feature:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--bg);
    transition: all 0.3s ease;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.feature-description {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 140px 0;
    background: var(--bg);
}

.tweets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.tweet-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 24px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.tweet-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.tweet-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: 0 12px 40px rgba(0, 255, 136, 0.1);
}

.tweet-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.tweet-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.tweet-author {
    flex: 1;
}

.tweet-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
}

.tweet-handle {
    font-size: 13px;
    color: var(--text-muted);
}

.tweet-icon {
    width: 20px;
    height: 20px;
    color: var(--accent);
    opacity: 0.6;
}

.tweet-text {
    font-size: 15px;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 16px;
}

.tweet-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.tweet-time {
    font-size: 12px;
    color: var(--text-muted);
}

/* CTA */
.cta {
    padding: 140px 0;
    position: relative;
}

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

.cta-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--text) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 48px;
}

.ca-cta {
    margin-top: 32px;
}

.ca-cta .ca-input-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text);
}

.footer-disclaimer {
    font-size: 12px;
    color: var(--text-subtle);
    text-align: center;
}

/* Canvas */
#canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--accent);
    color: var(--bg);
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10000;
    pointer-events: none;
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.4);
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav {
        padding: 16px 20px;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        display: none;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .chart-container {
        max-width: 100%;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 24px;
    }

    .strategy-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .strategy-calculator {
        position: relative;
        top: 0;
    }

    .steps {
        gap: 32px;
    }

    .step {
        flex-direction: column;
        gap: 16px;
    }

    .step-line {
        display: none;
    }

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

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

    .hero-container {
        padding: 0 20px;
    }


    .nav-logo-img {
        width: 32px;
        height: 32px;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}
