/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
    margin: 0;
    padding: 0;
}

/* Professional Typography */
h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.8rem;
    color: #0066ff;
    font-weight: 700;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.6rem;
    color: #0052cc;
    font-weight: 600;
    white-space: nowrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #0066ff, #0052cc);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.6);
}

.btn-secondary {
    background: linear-gradient(135deg, #00cc66, #00b359);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 204, 102, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 204, 102, 0.6);
}

.btn-large {
    padding: 1.4rem 3rem;
    font-size: 1.15rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #e6f3ff, #b3d9ff, #80bfff);
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Hero Social Icons */
.hero-social {
    position: absolute;
    top: 2rem;
    right: 2rem;
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: #0066ff;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.2);
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    background: #0066ff;
    color: white;
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e5e7eb" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    margin-bottom: 2rem;
    animation: slideInLeft 1s ease-out;
}

.gradient-text {
    background: linear-gradient(135deg, #0066ff, #9933ff, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: #475569;
    margin-bottom: 2.5rem;
    animation: slideInLeft 1s ease-out 0.2s both;
    line-height: 1.7;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    animation: slideInLeft 1s ease-out 0.4s both;
}

.hero-visual {
    display: flex;
    justify-content: center;
    animation: slideInRight 1s ease-out 0.6s both;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator i {
    font-size: 3rem;
    color: #0066ff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-indicator:hover i {
    color: #0052cc;
    transform: scale(1.1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Floating Card */
.floating-card {
    background: linear-gradient(135deg, #ffffff, #f8fafc, #f0f9ff);
    border-radius: 24px;
    padding: 3rem;
    min-width: 320px;
    box-shadow: 0 25px 50px rgba(0, 102, 255, 0.2);
    animation: float 3s ease-in-out infinite;
    border: 2px solid #d1e7ff;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    color: #0066ff;
    font-weight: 600;
    font-size: 1.1rem;
}

.card-header i {
    font-size: 1.4rem;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #f1f5f9;
    gap: 2rem;
}

.metric:last-child {
    border-bottom: none;
}

.metric-label {
    font-weight: 500;
    color: #64748b;
    font-size: 1.05rem;
}

.metric-value {
    font-weight: 700;
    font-size: 1.25rem;
}

.metric-value.positive {
    color: #00cc66;
}

.metric-value.low {
    color: #0066ff;
}

/* Section Styles */
section {
    padding: 6rem 0;
}

/* Remove extra padding from sections after hero */
.token-info {
    margin-top: 0;
    padding-top: 6rem;
}

.hero + section {
    margin-top: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #64748b;
}

/* Token Info Section */
.token-info {
    background: linear-gradient(135deg, #ffffff, #e6f3ff, #cce6ff);
}

.token-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.token-card {
    background: linear-gradient(135deg, #ffffff, #f8fafc, #f0f9ff);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #d1e7ff;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.08);
}

.token-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.token-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066ff, #0052cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

/* Bot Features Section */
.bot-features {
    background: linear-gradient(135deg, #cce6ff, #99d6ff, #66c7ff);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, #ffffff, #f8fafc, #f0f9ff);
    padding: 2rem;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #d1e7ff;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.08);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0066ff, #9933ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    margin-right: 1.5rem;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #0066ff;
    white-space: nowrap;
    font-size: 1.4rem;
    margin-top: 0;
}

.feature-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

/* Varied icon colors using gradient-text inspired colors */
.feature-card:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, #0066ff, #4d79ff);
}

.feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, #9933ff, #b366ff);
}

.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, #00ccff, #33d6ff);
}

.feature-card:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, #0066ff, #9933ff);
}

.feature-card:nth-child(5) .feature-icon {
    background: linear-gradient(135deg, #9933ff, #00ccff);
}

.feature-card:nth-child(6) .feature-icon {
    background: linear-gradient(135deg, #00ccff, #0066ff);
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Access Tier Section */
.access-tier {
    background: linear-gradient(135deg, #ffffff, #ccffee, #99ffdd);
}

.access-content {
    display: flex;
    justify-content: center;
}

.access-card {
    background: linear-gradient(135deg, #ffffff, #f0f9ff, #e6f3ff);
    border-radius: 24px;
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid #0066ff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.1);
}

.access-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(0, 102, 255, 0.05), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

.access-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 102, 255, 0.2);
}

.access-header {
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.access-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #0066ff, #9933ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

.access-header h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #0066ff;
}

.access-requirement {
    font-size: 1.25rem;
    font-weight: 600;
    color: #00cc66;
    background: linear-gradient(135deg, #e6fffa, #b3fff0);
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    display: inline-block;
    border: 2px solid #00cc66;
}

.access-features {
    text-align: left;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e6f3ff;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item i {
    color: #00cc66;
    font-size: 1.2rem;
    min-width: 20px;
}

.feature-item span {
    color: #0052cc;
    font-weight: 500;
    font-size: 1.05rem;
}

.access-cta {
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.access-description {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.5;
    background: rgba(240, 249, 255, 0.5);
    padding: 1rem;
    border-radius: 8px;
    border-left: 2px solid #0066ff;
    backdrop-filter: blur(5px);
    opacity: 0.8;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #00ccff, #9933ff, #0066ff, #0052cc);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand h3 {
    color: white;
    margin-bottom: 0;
    white-space: nowrap;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Responsive Design */

/* Large tablets and small desktops */
@media (max-width: 1200px) and (min-width: 993px) {
    .container {
        max-width: 1000px;
        padding: 0 30px;
    }
    
    .floating-card {
        min-width: 300px;
        padding: 2.5rem;
    }
}

/* Medium tablets */
@media (max-width: 992px) and (min-width: 769px) {
    .container {
        max-width: 900px;
        padding: 0 25px;
    }
    
    .hero-content {
        gap: 4rem;
    }
    
    .floating-card {
        min-width: 290px;
        padding: 2.3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .token-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
    
    h1 {
        font-size: 3.5rem;
    }
    
    h2 {
        font-size: 2.6rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
    }
    
    .btn {
        min-width: 180px;
    }
}

/* Small tablets */
@media (max-width: 768px) and (min-width: 481px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 0 20px;
    }
    
    .hero {
        min-height: 85vh;
    }
    
    .hero-social {
        top: 1rem;
        right: 1rem;
        gap: 0.75rem;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.4rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .btn {
        min-width: 160px;
        max-width: 200px;
    }
    
    .floating-card {
        padding: 2rem;
        min-width: 280px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .token-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
    
    .access-card {
        padding: 2.5rem;
        max-width: 100%;
    }
    
    .feature-header {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }
    
    .feature-icon {
        margin-right: 1.5rem;
        margin-bottom: 0;
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .cta-buttons {
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .scroll-indicator i {
        font-size: 2.5rem;
    }
    
    .access-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

/* Mobile devices */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 15px;
    }
    
    .hero {
        min-height: 100vh;
    }
    
    .hero-social {
        top: 1rem;
        right: 1rem;
        gap: 0.5rem;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    h1 {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.3rem;
        white-space: normal;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 1.2rem 2.5rem;
        font-size: 1.05rem;
    }
    
    .floating-card {
        padding: 1.5rem;
        min-width: 250px;
    }
    
    .card-header {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .card-header i {
        font-size: 1.2rem;
    }
    
    .metric {
        padding: 0.75rem 0;
        gap: 1rem;
    }
    
    .metric-label {
        font-size: 0.95rem;
    }
    
    .metric-value {
        font-size: 1.1rem;
    }
    
    .token-card,
    .feature-card,
    .access-card {
        padding: 1.5rem;
    }
    
    .features-grid,
    .token-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
        white-space: normal;
        margin-bottom: 0;
    }
    
    .token-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .access-card {
        padding: 2rem;
        max-width: 100%;
    }
    
    .access-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .access-header h3 {
        font-size: 1.5rem;
    }
    
    .access-requirement {
        font-size: 1.1rem;
        padding: 0.5rem 1rem;
    }
    
    .feature-item {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .feature-item span {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-brand h3 {
        font-size: 1.3rem;
        white-space: normal;
    }
    
    .footer-social {
        gap: 0.75rem;
    }
    
    .social-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .scroll-indicator i {
        font-size: 2.5rem;
    }
    
    .access-description {
        font-size: 0.85rem;
        padding: 0.75rem;
    }
}

/* Small mobile devices */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .floating-card {
        min-width: 220px;
        padding: 1.25rem;
    }
    
    .btn {
        max-width: 250px;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .token-card,
    .feature-card,
    .access-card {
        padding: 1.25rem;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .access-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .hero-social {
        gap: 0.4rem;
    }
    
    .scroll-indicator i {
        font-size: 2.2rem;
    }
}

/* Extra small mobile devices */
@media (max-width: 320px) {
    .container {
        padding: 0 8px;
    }
    
    .hero-content {
        padding: 0 8px;
        gap: 1.5rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .floating-card {
        min-width: 200px;
        padding: 1rem;
    }
    
    .btn {
        max-width: 220px;
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .token-card,
    .feature-card,
    .access-card {
        padding: 1rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .access-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .metric {
        gap: 0.5rem;
    }
    
    .metric-label {
        font-size: 0.85rem;
    }
    
    .metric-value {
        font-size: 1rem;
    }
    
    .card-header {
        font-size: 0.9rem;
    }
    
    .scroll-indicator i {
        font-size: 2rem;
    }
}

/* Landscape orientation adjustments */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 90vh;
    }
    
    section {
        padding: 2.5rem 0;
    }
    
    .hero-content {
        gap: 2rem;
    }
    
    .floating-card {
        min-width: 250px;
        padding: 1.5rem;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .btn::before {
        background-size: 100% 100%;
    }
    
    .hero::before {
        background-size: 100% 100%;
    }
}

/* Hover support check */
@media (hover: hover) {
    .btn:hover {
        transform: translateY(-2px);
    }
    
    .feature-card:hover,
    .token-card:hover,
    .access-card:hover {
        transform: translateY(-5px);
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .scroll-indicator i {
        animation: none;
    }
    
    .floating-card {
        animation: none;
    }
    
    .hero::before {
        animation: none;
    }
} 