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

:root {
    --bg-base: #020203;
    --text-primary: #ffffff;
    --text-secondary: #8e8e93;
    --glass-bg: rgba(20, 20, 22, 0.4);
    --glass-border: rgba(255, 255, 255, 0.06);
    --accent: #5e5ce6;
    --blur-strength: 40px;
}

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

html {
    overflow-y: scroll; 
}

body {
    background: var(--bg-base);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}


.mesh-bg {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -1;
    background: radial-gradient(circle at 20% 40%, rgba(94, 92, 230, 0.08), transparent 40%),
                radial-gradient(circle at 80% 60%, rgba(10, 132, 255, 0.08), transparent 40%);
    filter: blur(80px);
    animation: slowDrift 20s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes slowDrift {
    0% { transform: scale(1) translate(0, 0); opacity: 0.8; }
    100% { transform: scale(1.1) translate(2%, 2%); opacity: 1; }
}


.ios-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-strength)) saturate(200%);
    -webkit-backdrop-filter: blur(var(--blur-strength)) saturate(200%);
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}


nav {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    padding: 10px 25px;
    border-radius: 50px;
    z-index: 1000;
    gap: 30px;
    transition: none !important;
}

.brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 30%, #8e8e93 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tabs {
    display: grid;
    grid-template-columns: 100px 100px 100px 100px 100px 135px; 
    gap: 4px;
    padding: 6px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 30px;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 48px; 
    animation: none !important;
    transition: none !important;
}

.tab-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 20px;
    text-decoration: none;
    transition: none !important; 
    animation: none !important;
}

.tab-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
}

.tab-link.active {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.05);
}


.page-transition {
    animation: ultraPremiumReveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    will-change: transform, opacity, filter;
}


.cinematic-reveal {
    animation: ultraPremiumReveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    will-change: transform, opacity, filter;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }

@keyframes ultraPremiumReveal {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}


main {
    padding: 160px 5% 60px;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}


.hero {
    text-align: center;
    padding: 60px 0;
}

.hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -2.5px;
    background: linear-gradient(180deg, #ffffff 0%, #8e8e93 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.motto {
    font-size: 1.4rem;
    color: var(--text-secondary);
    max-width: 750px;
    margin: 0 auto 40px;
    font-weight: 400;
    line-height: 1.5;
}


.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 35px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
}

.social-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.05);
}


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

.glass-card {
    border-radius: 32px;
    padding: 45px 40px;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
    background: rgba(20, 20, 22, 0.4);
    backdrop-filter: blur(40px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 100%);
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-8px) scale(1.01);
    background: rgba(30, 30, 35, 0.6);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.icon-wrapper {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: inset 0 0 10px rgba(255,255,255,0.05);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(-5deg);
}

.icon-wrapper svg {
    width: 28px;
    height: 28px;
    stroke: var(--text-primary);
    stroke-width: 1.5;
    fill: none;
}

.glass-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.9), 0 0 5px rgba(0, 0, 0, 0.6);
}

.glass-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.65;
    margin: 0;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
    font-weight: 500;
}


.ac-card {
    position: relative;
    overflow: hidden;
}

.ac-card::after {
    content: '';
    position: absolute;
    top: -20px; left: -20px; right: -20px; bottom: -20px;
    background-image: 
        url('https://tse4.mm.bing.net/th/id/OIP.MqU9IdMvvKaw6KA_pozKfQAAAA?r=0&cb=thfvnextfalcon2&rs=1&pid=ImgDetMain&o=7&rm=3'),
        url('https://www.techpowerup.com/img/vOACtfnPVooQ8aWl.jpg'),
        url('https://zh.gtalogo.com/img/36692.webp');
    background-position: left center, center center, right center;
    background-size: 40% 100%, 40% 100%, 40% 100%;
    background-repeat: no-repeat;
    filter: blur(25px);
    opacity: 0.35;
    z-index: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.ac-card:hover::after {
    filter: blur(15px);
    opacity: 0.55;
    transform: scale(1.05);
}


.kernel-card {
    position: relative;
    overflow: hidden;
}

.kernel-card::after {
    content: '';
    position: absolute;
    top: -20px; left: -20px; right: -20px; bottom: -20px;
    background-image: url('https://www.zentyal.com/wp-content/uploads/2024/12/Linux-kernal-development-862x365.png');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: blur(25px);
    opacity: 0.35;
    z-index: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.kernel-card:hover::after {
    filter: blur(15px);
    opacity: 0.55;
    transform: scale(1.05);
}


.devirt-card {
    position: relative;
    overflow: hidden;
}

.devirt-card::after {
    content: '';
    position: absolute;
    top: -20px; left: -20px; right: -20px; bottom: -20px;
    background-image: url('https://i0.wp.com/blog.feabhas.com/wp-content/uploads/2022/11/Fig-18-final-func-error.png?ssl=1');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: blur(25px);
    opacity: 0.35;
    z-index: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.devirt-card:hover::after {
    filter: blur(15px);
    opacity: 0.55;
    transform: scale(1.05);
}


.hv-card {
    position: relative;
    overflow: hidden;
}

.hv-card::after {
    content: '';
    position: absolute;
    top: -20px; left: -20px; right: -20px; bottom: -20px;
    background-image: url('https://memn0ps.github.io/hypervisors-for-memory-introspection-and-reverse-engineering/matrix_hook_setup_trampoline.png');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: blur(25px);
    opacity: 0.35;
    z-index: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.hv-card:hover::after {
    filter: blur(15px);
    opacity: 0.55;
    transform: scale(1.05);
}


.edr-card {
    position: relative;
    overflow: hidden;
}

.edr-card::after {
    content: '';
    position: absolute;
    top: -20px; left: -20px; right: -20px; bottom: -20px;
    background-image: url('https://www.computertechreviews.com/wp-content/uploads/2021/12/What-is-Endpoint-Detection-and-Response-1200x675.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: blur(25px);
    opacity: 0.35;
    z-index: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.edr-card:hover::after {
    filter: blur(15px);
    opacity: 0.55;
    transform: scale(1.05);
}


.apt-card {
    position: relative;
    overflow: hidden;
}

.apt-card::after {
    content: '';
    position: absolute;
    top: -20px; left: -20px; right: -20px; bottom: -20px;
    background-image: url('https://scanoncomputer.com/wp-content/uploads/2023/07/What-is-Advanced-Persistent-Threat-APT.png');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: blur(25px);
    opacity: 0.35;
    z-index: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.apt-card:hover::after {
    filter: blur(15px);
    opacity: 0.55;
    transform: scale(1.05);
}


.d3d-card {
    position: relative;
    overflow: hidden;
}

.d3d-card::after {
    content: '';
    position: absolute;
    top: -20px; left: -20px; right: -20px; bottom: -20px;
    background-image: url('https://i.gyazo.com/98eadd5a7be9bbcb069394b277766e2c.png');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: blur(25px);
    opacity: 0.35;
    z-index: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.d3d-card:hover::after {
    filter: blur(15px);
    opacity: 0.55;
    transform: scale(1.05);
}


.ue-card {
    position: relative;
    overflow: hidden;
}

.ue-card::after {
    content: '';
    position: absolute;
    top: -20px; left: -20px; right: -20px; bottom: -20px;
    background-image: url('https://spuckwaffel.com/blogposts/UEDumper.png');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: blur(25px);
    opacity: 0.35;
    z-index: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.ue-card:hover::after {
    filter: blur(15px);
    opacity: 0.55;
    transform: scale(1.05);
}


.tech-list {
    list-style: none;
    margin-top: auto;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-list li {
    font-size: 0.8rem;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}


.history-panel {
    margin: 80px 0 40px;
    padding: 70px;
    border-radius: 36px;
    position: relative;
    overflow: hidden;
    background: rgba(20, 20, 22, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.history-panel::after {
    content: '';
    position: absolute;
    top: 0; right: 0; width: 50%; height: 100%;
    background: radial-gradient(circle at top right, rgba(94, 92, 230, 0.1), transparent 70%);
    pointer-events: none;
}

.history-panel h2 {
    font-size: 2.8rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.stats-bar {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 35px;
}

.stat {
    display: flex;
    flex-direction: column;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat span {
    color: var(--text-primary);
    font-size: 4rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #fff, #5e5ce6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 8px;
}

.history-text {
    max-width: 900px;
}

.history-text p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.history-subheading {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 30px 0 15px 0;
    color: #ffffff;
    border-left: 3px solid #5e5ce6;
    padding-left: 15px;
}

.history-text p:last-child {
    margin-bottom: 0;
}

.highlight {
    color: #5e5ce6;
    font-weight: 600;
}


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

.team-card {
    border-radius: 32px;
    padding: 0;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(20, 20, 22, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.team-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(30, 30, 35, 0.6);
}

.team-banner {
    width: 100%;
    height: 120px;
    background-size: cover;
    background-position: center;
}

.team-pfp-container {
    position: absolute;
    top: 70px;
    left: 20px;
    z-index: 10;
}

.team-pfp {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #0a0a0c;
    background: #0a0a0c;
    position: relative;
    z-index: 2;
}

.team-decor {
    position: absolute;
    top: -8px; left: -8px;
    width: 96px; height: 96px;
    pointer-events: none;
    z-index: 3;
}

.team-flag-absolute {
    position: absolute;
    top: 135px;
    right: 20px;
    width: 24px;
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.team-info {
    padding: 45px 20px 20px 20px;
}

.team-global-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2px;
}

.team-username {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 12px;
}

.team-role {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.team-bio {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    background: rgba(0,0,0,0.3);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}


.css-banner {
    margin-left: auto;
    position: relative;
    padding: 2px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(94, 92, 230, 0.15);
    align-self: center;
}

.css-banner::before {
    content: '';
    position: absolute;
    width: 250%;
    height: 250%;
    background: conic-gradient(from 0deg, transparent 0%, #5e5ce6 25%, transparent 50%);
    animation: rotateGlow 4s linear infinite;
}

.banner-inner {
    position: relative;
    z-index: 2;
    background: #0a0a0c;
    padding: 20px 45px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.banner-text {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #ffffff 0%, #5e5ce6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.banner-subtext {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 6px;
    font-weight: 600;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


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

.price-card {
    border-radius: 32px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(20, 20, 22, 0.4);
    backdrop-filter: blur(40px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(30, 30, 35, 0.6);
}

.price-card h3 {
    font-size: 2rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.price-amount {
    font-size: 3.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #fff, #5e5ce6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 35px;
}

.pay-btn {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 30px;
    border-radius: 30px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    color: white;
}

.btn-paypal {
    background: #00457C;
    border: 1px solid rgba(255,255,255,0.1);
}
.btn-paypal:hover {
    background: #005A9C;
    box-shadow: 0 10px 30px rgba(0, 69, 124, 0.5);
    transform: translateY(-3px);
}

.btn-discord {
    background: #5865F2;
    border: 1px solid rgba(255,255,255,0.1);
}
.btn-discord:hover {
    background: #4752C4;
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.5);
    transform: translateY(-3px);
}

.address-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
    margin-top: auto;
}

.payment-address {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-family: monospace;
    background: rgba(0,0,0,0.4);
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}

@media (max-width: 768px) {
    nav {
        width: 90%;
        padding: 10px;
        flex-direction: column;
        gap: 15px;
    }
    
    .tabs {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        height: auto;
        width: 100%;
        padding: 8px;
    }

    .tab-link {
        padding: 8px 12px;
        width: auto;
        font-size: 0.85rem;
    }

    .hero h1 {
        font-size: 3rem;
        letter-spacing: -1px;
    }

    .motto {
        font-size: 1.1rem;
        padding: 0 15px;
    }

    main {
        padding: 150px 5% 40px;
    }

    .stats-bar {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        align-items: center;
    }

    .css-banner {
        margin: 20px auto 0;
        width: 100%;
    }

    .banner-inner {
        padding: 15px;
    }
    
    .banner-text {
        font-size: 1.8rem;
    }

    .history-panel {
        padding: 40px 25px;
    }
    
    .history-panel h2 {
        font-size: 2rem;
        text-align: center;
    }

    .history-panel::after {
        display: none;
    }

    .glass-card, .price-card {
        padding: 30px 25px;
    }

    .price-amount {
        font-size: 2.8rem;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-btn {
        width: 100%;
        justify-content: center;
    }
}
