@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;600;700&display=swap');

:root {
    
    --aw-navy: #0A1128;
    --aw-navy-light: #16203D;
    --aw-neon-blue: #00E5FF;
    --aw-silver: #E0E1DD;
    --aw-white: #FFFFFF;
    --aw-charcoal: #1B1B1E;
    --aw-accent: #FF206E; 

    --aw-font-main: 'Outfit', sans-serif;
    --aw-font-display: 'Space Grotesk', sans-serif;

    --aw-wrap-max: 1300px;
    --aw-wrap-pad: 5%;

    --aw-radius: 12px;
    --aw-radius-pill: 50px;
    --aw-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --aw-glow: 0 0 15px rgba(0, 229, 255, 0.4);
    --aw-glass: rgba(10, 17, 40, 0.85);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--aw-navy);
    color: var(--aw-silver);
    font-family: var(--aw-font-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.aw-wrap {
    max-width: var(--aw-wrap-max);
    margin: 0 auto;
    padding: 0 var(--aw-wrap-pad);
}

.aw-section {
    padding: 100px 0;
}

.aw-h-display {
    font-family: var(--aw-font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.1;
    font-weight: 800;
    color: var(--aw-white);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.aw-h-section {
    font-family: var(--aw-font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--aw-white);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.aw-h-section::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--aw-neon-blue);
    box-shadow: var(--aw-glow);
}

.aw-text-neon {
    color: var(--aw-neon-blue);
    text-shadow: var(--aw-glow);
}

@media (max-width: 768px) {
    .aw-section {
        padding: 60px 0;
    }
}

@media (max-width: 320px) {
    html {
        font-size: 14px;
    }
    .aw-wrap {
        padding: 0 4%;
    }
    .aw-h-display {
        font-size: 2.5rem;
    }
}

.aw-seo-content { padding: 60px 0; border-top: 1px solid rgba(255,255,255,0.05); }
.aw-seo-article { max-width: 100%; margin: 0 auto; color: var(--aw-silver); font-size: 1rem; line-height: 1.8; }
.aw-seo-article h2, .aw-seo-article h3, .aw-seo-article h4 { font-family: var(--aw-font-display); color: var(--aw-white); margin: 30px 0 15px; }
.aw-seo-article p { margin-bottom: 20px; }
.aw-seo-article ul { margin-bottom: 20px; padding-left: 20px; }
.aw-seo-article li { margin-bottom: 10px; }

@media (max-width: 320px) {
    body, html { min-width: 320px; overflow-x: hidden; }
    .aw-wrap { padding: 0 10px; }
    .aw-h-display { font-size: 2.5rem !important; }
    .aw-hero-complex { min-height: auto; grid-template-rows: auto auto; }
    .aw-hero-img-col { height: 300px; clip-path: none !important; }
    .aw-hero-text-col { padding: 80px 10px 40px !important; }
    .aw-bento-grid { gap: 10px; }
    .bento-item, .bento-item-large, .bento-item-wide { height: 250px !important; }
    .aw-card-content { padding: 15px; }
    .aw-card-title { font-size: 1rem; }
    .store-content { padding: 20px !important; }
    .aw-footer-grid { grid-template-columns: 1fr !important; gap: 30px; }
    .aw-cookie-modal { width: 300px; right: 10px; left: 10px; padding: 15px; }
    .aw-search-input { font-size: 1.5rem !important; }
}
@media (max-width:600px) {
        .aw-h-display {
        font-size: 2rem !important;
        word-wrap: break-word;
        hyphens: auto;
    }
}
@media (max-width: 380px) {
    
    html, body {
        overflow-x: hidden !important;
        width: 100vw;
    }
    .aw-wrap {
        padding: 0 15px !important;
        width: 100% !important;
    }
    .aw-header-inner {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .aw-brand-logo {
        width: 24px !important;
        height: 24px !important;
    }
    .aw-brand {
        font-size: 1.2rem !important;
    }
    .aw-h-section {
        font-size: 1.8rem !important;
        word-wrap: break-word;
    }
    .aw-card {
        max-width: 100%;
        margin: 0 auto;
    }
    .aw-hero-complex, .aw-bento-grid, .aw-product-grid, .aw-journal-bento, .aw-footer-grid, .checkout-grid {
        grid-template-columns: 1fr !important;
    }
    .aw-btn {
        width: 100%;
        padding: 12px 20px;
    }
}

@media (max-width: 380px) {
    .aw-review-card, .checkout-box, .club-row, .aw-card-content { padding: 15px !important; }
    .club-row { gap: 15px !important; }
    .aw-footer-grid > div { padding-right: 0 !important; }
    .aw-cookie-modal { width: calc(100% - 20px) !important; left: 10px !important; right: 10px !important; padding: 15px !important; }
    .aw-mobile-nav a { font-size: 1.8rem !important; }
    .aw-search-input { font-size: 1.5rem !important; }
}
