/* Why Jetstream Page Styles */

/* Global mobile overflow protection */
html, body {
    overflow-x: hidden;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: border-box;
}

/* Import CSS Variables */
:root {
    --primary-color: #ff5722;
    --bg-dark: #0a0a0a;
    --bg-secondary: #161616;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --success: #4caf50;
    --danger: #f44336;
    --chart-line: #ff5722;
    --glow-color: rgba(255, 87, 34, 0.5);
    
    /* Spacing Variables */
    --container-max-width: 1200px;
    --container-padding: 2rem;
    --container-padding-tablet: 1.5rem;
    --container-padding-mobile: 1rem;
    --container-padding-small: 0.875rem;
    
    --section-padding-y: 5rem;
    --section-padding-y-tablet: 4rem;
    --section-padding-y-mobile: 3rem;
    --section-padding-y-small: 2.5rem;
    
    --nav-padding: 2rem;
    --nav-padding-large: 1.5rem;
    --nav-padding-medium: 1.25rem;
    --nav-padding-tablet: 1rem;
    --nav-padding-mobile: 0.875rem;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Active nav link */
.nav-menu a.active {
    color: var(--primary-color);
}

/* Hero Section */
.why-hero {
    background-color: #080808;
    padding: var(--section-padding-y) 0 4rem;
    text-align: center;
    margin-top: 80px;
}

.why-hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* DeFi Banner */
.defi-banner,
.defi-banner-bottom {
    background-color: #080808;
    padding: 1rem 0;
    overflow: hidden;
}

.banner-content {
    background-color: rgba(255, 73, 24, 0.15);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.banner-icon {
    font-size: 1.5rem;
}

.defi-banner-bottom .banner-content {
    flex-direction: column;
    text-align: center;
    padding: 3rem 2rem;
}

.defi-banner-bottom .banner-content p {
    color: var(--text-secondary);
    margin: 1rem 0 2rem;
    max-width: 600px;
}

.learn-more-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Core Advantages */
.core-advantages {
    background-color: #0a0a0a;
    padding: var(--section-padding-y) 0;
}

.core-advantages h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 4rem;
}

.advantages-table {
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: rgba(255, 255, 255, 0.05);
}

.column-header {
    padding: 2rem;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.column-header:last-child {
    border-right: none;
}

.column-header.jetstream {
    color: var(--primary-color);
}

.column-header.traditional {
    color: var(--text-primary);
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.advantage-item {
    padding: 1.5rem 2rem;
    color: var(--text-secondary);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.6;
}

.advantage-item:last-child {
    border-right: none;
}

/* Mobile overflow protection for all sections */
@media (max-width: 768px) {
    .why-hero,
    .defi-banner,
    .core-advantages,
    .model-wins,
    .for-traders,
    .defi-banner-bottom {
        width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .for-traders {
        padding: 3rem 1rem;
    }
    
    .for-traders h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .traders-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
        padding: 0 0.5rem;
    }
    
    .traders-description {
        font-size: 0.875rem;
        line-height: 1.5;
        padding: 0 1rem;
        margin-bottom: 2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

.table-row:nth-child(1) .advantage-item:first-child {
    background-color: rgba(255, 73, 24, 0.1);
    color: var(--text-primary);
}

/* Model Wins Section */
.model-wins {
    background-color: #080808;
    padding: var(--section-padding-y) 0;
}

.model-wins h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 5rem;
}

.model-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.model-section.reverse {
    grid-template-columns: 1fr 1fr;
}

.model-section.reverse .model-visual {
    order: -1;
}

.model-content h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.model-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.model-content ul {
    list-style: none;
    padding: 0;
}

.model-content li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.model-content li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Visual Components */
.futures-cards {
    display: flex;
    gap: 1rem;
}

.futures-card {
    background-color: var(--primary-color);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    flex: 1;
}

.futures-card .amount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.futures-card .label {
    color: white;
    font-size: 1rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 300px;
}

.portfolio-item {
    background-color: rgba(255, 73, 24, 0.2);
    border: 1px solid var(--primary-color);
    padding: 2rem 1rem;
    text-align: center;
    border-radius: 8px;
    color: var(--text-primary);
    font-weight: 600;
}

.portfolio-item.bitcoin {
    background-color: rgba(255, 87, 34, 0.3);
}

.portfolio-item.ethereum {
    background-color: rgba(255, 73, 24, 0.2);
}

.portfolio-item.solana {
    grid-column: 1 / -1;
    background-color: rgba(255, 73, 24, 0.1);
}

.model-visual img {
    width: 100%;
    height: auto;
    max-width: 400px;
}

.launch-section {
    text-align: center;
    margin-top: 4rem;
}

@media (max-width: 768px) {
    .launch-section {
        margin-top: 2.5rem;
        padding: 0 1rem;
    }
    
    .launch-section .launch-btn {
        width: 100%;
        max-width: 280px;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Launch button specific overrides */
.launch-btn {
    padding: 1rem 3rem;
    font-size: 1.125rem;
}

/* For Traders Section */
.for-traders {
    background-color: #0a0a0a;
    padding: var(--section-padding-y) 0;
    text-align: center;
}

.for-traders h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.traders-subtitle {
    color: var(--text-secondary);
    font-size: 1.25rem;
    margin-bottom: 4rem;
}

.trader-features {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto 4rem;
    gap: 0;
}

.trader-feature {
    flex: 1;
    text-align: left;
    padding: 2rem 1.5rem;
    border-right: 1px solid var(--primary-color);
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1rem;
    position: relative;
}

.trader-feature:last-child {
    border-right: none;
}

.trader-feature h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.trader-feature p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.traders-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.documentation-btn {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Footer */
.footer {
    background-color: #050505;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1440px) {
    .container {
        padding: 0 var(--container-padding-tablet);
    }
}

@media (max-width: 1200px) {
    .model-section {
        gap: 3.5rem;
        max-width: 1000px;
    }
    
    .trader-features {
        max-width: 1000px;
        gap: 0;
    }
    
    .trader-feature {
        padding: 2.25rem 1.5rem;
    }
}

@media (max-width: 1024px) {
    .model-section {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .model-section.reverse .model-visual {
        order: 0;
    }
    
    .model-content {
        max-width: 700px;
        margin: 0 auto;
    }
    
    .trader-features {
        flex-wrap: wrap;
        gap: 0;
        max-width: 800px;
    }
    
    .trader-feature {
        flex: 0 0 calc(50% - 0.5px);
        border-right: 1px solid var(--primary-color);
        border-bottom: 1px solid var(--primary-color);
        min-height: auto;
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .trader-feature:nth-child(2n) {
        border-right: none;
    }
    
    .trader-feature:nth-child(3),
    .trader-feature:nth-child(4) {
        border-bottom: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--container-padding-mobile);
    }
    
    .why-hero {
        padding: var(--section-padding-y-tablet) 0 3rem;
    }
    
    .why-hero h1 {
        font-size: clamp(2.25rem, 5vw, 3rem);
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 2.5vw, 1.25rem);
        margin-bottom: 2.5rem;
    }
    
    .defi-banner .banner-content,
    .defi-banner-bottom .banner-content {
        padding: 1.25rem;
        border-radius: 6px;
        margin: 0 0.5rem;
    }
    
    .defi-banner-bottom .banner-content h3 {
        font-size: clamp(1.25rem, 3vw, 1.5rem);
    }
    
    .defi-banner-bottom .banner-content p {
        font-size: clamp(0.95rem, 2.2vw, 1rem);
    }
    
    /* Core Advantages Section Mobile - Using exact Figma specifications */
    .core-advantages {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: var(--section-padding-y-mobile) var(--container-padding-mobile);
        gap: 48px;
        width: 100%;
        max-width: 393px;
        height: auto;
        background: #080808;
        margin: 0 auto;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .core-advantages h2 {
        width: 319px;
        height: auto;
        font-family: 'Suisse Intl Trial', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        font-style: normal;
        font-weight: 500;
        font-size: 36px;
        line-height: 120%;
        display: flex;
        align-items: center;
        text-align: center;
        letter-spacing: 0.04em;
        color: #FFFFFF;
        margin: 0;
        max-width: 319px;
    }
    
    /* Advantages Table Container Mobile */
    .advantages-table {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        padding: 0px;
        width: 100%;
        max-width: 353px;
        height: auto;
        border: none;
        border-radius: 0;
        overflow: visible;
        margin: 0 auto;
        position: relative;
    }
    
    /* Mobile table restructuring */
    .advantages-table {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0px;
        width: 100%;
        max-width: 353px;
        height: auto;
        border: none;
        border-radius: 0;
        overflow: visible;
        margin: 0 auto;
    }
    
    /* Style table header for mobile */
    .table-header {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
        background: none;
    }
    
    .column-header {
        box-sizing: border-box;
        display: flex;
        align-items: center;
        padding: 16px 24px 32px;
        background: linear-gradient(180deg, rgba(254, 74, 0, 0.12) 0%, rgba(255, 255, 255, 0) 99.5%);
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        border-right: none;
        
        font-family: 'Suisse Intl Trial', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        font-style: normal;
        font-weight: 500;
        font-size: 18px;
        line-height: 120%;
        color: #FF4918;
        text-align: left;
    }
    
    .column-header.jetstream {
        text-shadow: 0px 0px 4px rgba(254, 74, 0, 0.75);
    }
    
    .column-header.traditional {
        /* Remove the drop-shadow effect */
        color: #FF4918;
    }
    
    /* Style table rows for mobile */
    .table-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }
    
    .advantage-item {
        box-sizing: border-box;
        padding: 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        border-right: none;
        
        font-family: 'Suisse Intl Trial', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 160%;
        color: rgba(255, 255, 255, 0.75);
        text-align: left;
        margin: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        min-width: 0;
    }
    
    .advantage-item:last-child {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }
    
    /* Model Wins Section Mobile */
    .model-wins {
        padding: var(--section-padding-y-mobile) var(--container-padding-mobile);
    }
    
    .model-wins h2 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
    /* Individual Model Section Cards */
    .model-content h3 {
        font-family: 'Suisse Intl Trial', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        font-style: normal;
        font-weight: 500;
        font-size: 32px;
        line-height: 120%;
        letter-spacing: 0.04em;
        color: #FFFFFF;
        margin-bottom: 1.5rem;
        max-width: 353px;
    }
    
    .model-content p {
        font-family: 'Suisse Intl Trial', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 160%;
        color: rgba(255, 255, 255, 0.75);
        margin-bottom: 2rem;
        max-width: 353px;
    }
    
    /* Bullet Points */
    .model-content li {
        font-family: 'Suisse Intl Trial', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 160%;
        color: #FFFFFF;
        margin-bottom: 0.5rem;
        position: relative;
        padding-left: 16px;
    }
    
    .model-content li:before {
        content: '';
        position: absolute;
        left: 4px;
        top: 8px;
        width: 8px;
        height: 8px;
        background: #FF4918;
        border-radius: 50%;
        box-shadow: 0px 0px 24px 8px rgba(255, 73, 24, 0.15), 0px 0px 0px 4px rgba(255, 73, 24, 0.1);
        border: 2px solid rgba(255, 255, 255, 0.12);
    }
    
    /* Futures Cards Mobile */
    .futures-cards {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 0px;
        gap: 42.5px;
        width: 100%;
        max-width: 325.8px;
        height: auto;
        margin: 0 auto;
        justify-content: center;
    }
    
    .futures-card {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 14.1651px;
        width: 141.65px;
        height: 141.65px;
        background: #FF4918;
        border-radius: 0;
        box-shadow: 0px 0px 30.1009px rgba(32, 147, 166, 0.3), 0px 0px 0px 3.54129px rgba(32, 147, 166, 0.1);
        border: 1.77064px solid rgba(255, 255, 255, 0.12);
        flex: none;
        text-align: center;
    }
    
    .futures-card.ethereum {
        background: rgba(255, 73, 24, 0.1);
        box-shadow: 0px 0px 30.1009px rgba(255, 73, 24, 0.3), 0px 0px 0px 3.54129px rgba(255, 73, 24, 0.1);
        width: 88.53px;
        height: 88.53px;
        margin-top: 26.56px;
    }
    
    .futures-card .amount {
        font-family: 'Suisse Intl Trial', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        font-style: normal;
        font-weight: 600;
        font-size: 28.3303px;
        line-height: 120%;
        color: #080808;
        margin-bottom: 0;
    }
    
    .futures-card.ethereum .amount {
        font-size: 21.2477px;
        color: #FF4918;
    }
    
    .futures-card .label {
        font-family: 'Suisse Intl Trial', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 14.1651px;
        line-height: 160%;
        color: #FFFFFF;
        margin-top: 8.85px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        margin: 0 auto;
        gap: 1.5rem;
    }
    
    .portfolio-item.solana {
        grid-column: 1;
    }
    
    /* Ensure consistent text/image order on mobile */
    .model-section {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 0px;
        gap: 48px;
        width: 100%;
        max-width: 353px;
        height: auto;
        margin: 0 auto 4rem;
        text-align: left;
    }
    
    .model-content {
        order: 0;
        width: 100%;
    }
    
    .model-visual {
        order: 1;
        max-width: 100%;
        width: 100%;
        text-align: center;
    }
    
    /* Override reverse sections to maintain text-first order */
    .model-section.reverse .model-content {
        order: 0;
    }
    
    .model-section.reverse .model-visual {
        order: 1;
    }
    
    .model-visual img {
        width: 100%;
        height: auto;
        max-width: 325.8px;
        margin: 0 auto;
        display: block;
    }
    
    /* For Traders Section Mobile */
    .for-traders {
        padding: 3rem 1rem !important;
        overflow-x: hidden;
    }
    
    .for-traders h2 {
        font-size: 2rem !important;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .traders-subtitle {
        font-size: 1rem !important;
        margin-bottom: 2.5rem;
        padding: 0 0.5rem;
    }
    
    .traders-description {
        font-size: 0.875rem !important;
        line-height: 1.5;
        padding: 0 1rem !important;
        margin-bottom: 2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .trader-features {
        flex-direction: column;
        gap: 0;
        border: 1px solid var(--primary-color);
        border-radius: 8px;
        overflow: hidden;
        max-width: 100%;
        margin: 0 auto 3rem !important;
    }
    
    .trader-feature {
        flex: none;
        padding: 1.25rem;
        text-align: left;
        border-right: none;
        border-bottom: 1px solid var(--primary-color);
        margin: 0;
        background-color: rgba(255, 255, 255, 0.02);
        min-height: auto;
    }
    
    .trader-feature:last-child {
        border-bottom: none;
    }
    
    .trader-feature h3 {
        font-size: 1.125rem !important;
        margin-bottom: 0.5rem;
        color: var(--primary-color);
    }
    
    .trader-feature p {
        font-size: 0.875rem !important;
        line-height: 1.4;
        color: rgba(255, 255, 255, 0.75);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .documentation-btn,
    .launch-btn {
        width: 100%;
        max-width: 280px;
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        text-align: center;
        box-sizing: border-box;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
        max-width: 100%;
    }
    
    .why-hero {
        padding: 2rem 0;
        margin-top: 60px;
    }
    
    .why-hero h1 {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .banner-content {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
        margin: 0;
        font-size: 0.875rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .defi-banner-bottom .banner-content {
        padding: 1.5rem 1rem;
    }
    
    .defi-banner-bottom .banner-content h2 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .defi-banner-bottom .banner-content p {
        font-size: 0.875rem;
        line-height: 1.4;
    }
    
    .core-advantages h2,
    .model-wins h2,
    .for-traders h2 {
        font-size: 1.5rem;
        line-height: 1.2;
        padding: 0;
        margin-bottom: 1.5rem;
    }
    
    .model-content h3 {
        font-size: 1.25rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }
    
    .model-content p {
        font-size: 0.875rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    
    .model-content li {
        font-size: 0.875rem;
        line-height: 1.4;
    }
    
    .futures-cards {
        gap: 1.25rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .futures-card {
        min-width: 120px;
        padding: 1.5rem;
    }
    
    .portfolio-grid {
        gap: 0.75rem;
        max-width: 280px;
    }
    
    .portfolio-item {
        padding: 1.5rem 0.75rem;
        font-size: clamp(0.9rem, 2vw, 1rem);
    }
    
    .trader-feature h3 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .trader-feature p {
        font-size: 0.875rem;
        line-height: 1.3;
    }
    
    .cta-buttons {
        gap: 1.5rem;
    }
    
    /* For Traders Section Mobile 480px */
    .for-traders {
        padding: 2.5rem 1rem !important;
    }
    
    .for-traders h2 {
        font-size: 1.5rem !important;
        margin-bottom: 0.75rem;
    }
    
    .traders-subtitle {
        font-size: 0.95rem !important;
        margin-bottom: 2rem;
    }
    
    .traders-description {
        font-size: 0.875rem !important;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem !important;
    }
    
    .trader-features {
        margin: 0 auto 2rem !important;
    }
    
    .trader-feature {
        padding: 1rem !important;
    }
    
    .trader-feature h3 {
        font-size: 1rem !important;
        margin-bottom: 0.25rem;
    }
    
    .trader-feature p {
        font-size: 0.875rem !important;
        line-height: 1.3;
    }
    
    .documentation-btn,
    .launch-btn {
        width: 100%;
        max-width: none;
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
        box-sizing: border-box;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-column {
        padding: 0 1rem;
    }
}