/* =========================================
   Elite Builder
   Main CSS
   Step 3.1
========================================= */

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

/* =====================
   CSS Variables
===================== */

:root{

    --primary:#8b5cf6;
    --primary-light:#a855f7;
    --secondary:#3b82f6;

    --bg:#09090f;
    --surface:#11111a;
    --surface-light:#181824;

    --white:#ffffff;
    --text:#d4d4d8;
    --muted:#8b8b98;

    --border:rgba(255,255,255,.08);

    --radius:18px;

    --shadow:
        0 20px 45px rgba(0,0,0,.45);

}

/* =====================
   Reset
===================== */

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

html{

    scroll-behavior:smooth;

}

body{

    font-family:"Poppins",sans-serif;

    background:var(--bg);

    color:var(--white);

    overflow-x:hidden;

    min-height:100vh;

    position:relative;

}

/* =====================
   Scrollbar
===================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#09090f;

}

::-webkit-scrollbar-thumb{

    background:linear-gradient(
        180deg,
        var(--primary),
        var(--secondary)
    );

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary-light);

}

/* =====================
   Selection
===================== */

::selection{

    background:var(--primary);

    color:white;

}

/* =====================
   Links
===================== */

a{

    color:inherit;

    text-decoration:none;

}

/* =====================
   Lists
===================== */

ul{

    list-style:none;

}

/* =====================
   Buttons
===================== */

button{

    font-family:inherit;

    cursor:pointer;

    border:none;

    outline:none;

}

/* =====================
   Images
===================== */

img{

    max-width:100%;

    display:block;

}

/* Brand + guild icons must stay circular and not stretch */
img.brand-logo,
img.server-icon {
    display: block;
    object-fit: contain;
    max-width: none;
}

img.server-icon {
    object-fit: cover;
}

/* Inline Discord emoji in builder preview — never block-level */
img.eb-custom-emoji {
    display: inline !important;
    max-width: 1.375em !important;
}


/* =====================
   Sections
===================== */

section{

    width:100%;

    padding:120px 8%;

    position:relative;

    z-index:2;

}

/* =====================
   Containers
===================== */

.container{

    max-width:1400px;

    margin:auto;

}

/* =====================
   Headings
===================== */

h1{

    font-size:72px;

    line-height:1.05;

    font-weight:800;

}

h2{

    font-size:48px;

    font-weight:700;

}

h3{

    font-size:24px;

    font-weight:600;

}

p{

    color:var(--text);

    line-height:1.8;

}

/* =====================
   Aurora Background
===================== */

.aurora-bg{

    position:fixed;

    inset:0;

    overflow:hidden;

    z-index:-2;

}

.orb{

    position:absolute;

    border-radius:50%;

    filter:blur(110px);

    opacity:.35;

    animation:float 12s ease-in-out infinite;

}

.orb1{

    width:380px;

    height:380px;

    background:#7c3aed;

    top:-100px;

    left:-100px;

}

.orb2{

    width:420px;

    height:420px;

    background:#2563eb;

    right:-140px;

    top:180px;

    animation-delay:2s;

}

.orb3{

    width:320px;

    height:320px;

    background:#9333ea;

    bottom:-100px;

    left:40%;

    animation-delay:4s;

}

/* =====================
   Background Grid
===================== */

body::before{

    content:"";

    position:fixed;

    inset:0;

    background-image:

    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),

    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);

    background-size:50px 50px;

    z-index:-3;

}

/* =====================
   Animation
===================== */

@keyframes float{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-40px);

    }

    100%{

        transform:translateY(0);

    }

}

/*==================================
  STEP 3.2
  NAVBAR
==================================*/

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:78px;
    padding:0 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:rgba(10,10,18,.75);
    backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(255,255,255,.08);
    z-index:1000;
}

.logo{
    font-size:28px;
    font-weight:700;
}

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

.nav-links li{
    display:flex;
    align-items:center;
}

.nav-links a{
    display:flex;
    align-items:center;
    justify-content:center;
    color:#d4d4d8;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover{
    color:#8b5cf6;
}

.nav-right{
    display:flex;
    align-items:center;
    gap:15px;
}

.primary-btn,
.login-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
}

.primary-btn span,
.login-btn span{
    display:inline-block;
    line-height:1;
}

.primary-btn i,
.login-btn i{
    width:18px;
    height:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

svg.lucide{
    width:18px;
    height:18px;
    stroke-width:2;
    vertical-align:middle;
    flex-shrink:0;
}

/*==================================
LOGIN BUTTON
==================================*/

.login-btn,
.discord-btn,
.primary-btn,
.secondary-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    white-space:nowrap;

}

.login-btn{

    padding:12px 26px;

    border-radius:12px;

    background:#8b5cf6;

    color:#fff;

    font-weight:600;

    box-shadow:0 0 30px rgba(139,92,246,.35);

}

.discord-btn{

    padding:12px 26px;

    border-radius:12px;

    border:1px solid rgba(255,255,255,.08);

    background:rgba(255,255,255,.04);

    color:#fff;

    font-weight:600;

}

.primary-btn{

    padding:16px 34px;

    border-radius:14px;

}

.secondary-btn{

    padding:16px 34px;

    border-radius:14px;

}

.login-btn:hover{

    transform:translateY(-3px);

    background:#a855f7;

}

/*==================================
HERO
==================================*/

.hero{

    min-height:100vh;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.hero-left{

    display:flex;

    flex-direction:column;

    gap:28px;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    width:max-content;

    padding:10px 18px;

    border-radius:999px;

    background:rgba(139,92,246,.12);

    border:1px solid rgba(139,92,246,.3);

    color:#c4b5fd;

    font-weight:600;

}

.hero h1{

    max-width:620px;

}

.hero p{

    max-width:560px;

    font-size:18px;

}

/*==================================
BUTTONS
==================================*/

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.primary-btn{

    padding:16px 34px;

    border-radius:14px;

    background:linear-gradient(
        135deg,
        #8b5cf6,
        #3b82f6
    );

    color:white;

    font-weight:600;

    transition:.35s;

    box-shadow:0 15px 35px rgba(139,92,246,.35);

}

.primary-btn:hover{

    transform:translateY(-4px);

}

.secondary-btn{

    padding:16px 34px;

    border-radius:14px;

    border:1px solid rgba(255,255,255,.12);

    background:rgba(255,255,255,.04);

    backdrop-filter:blur(14px);

    color:white;

    font-weight:600;

    transition:.35s;

}

.secondary-btn:hover{

    background:rgba(255,255,255,.08);

    transform:translateY(-4px);

}

/*==================================
DISCORD PREVIEW
==================================*/

.discord-preview{

    width:100%;

    background:#1e1f22;

    border-radius:22px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:0 30px 60px rgba(0,0,0,.45);

}

.discord-header{

    background:#2b2d31;

    padding:18px;

    font-size:18px;

    font-weight:600;

    border-bottom:1px solid rgba(255,255,255,.06);

}

.discord-content{

    padding:28px;

}

.discord-content h3{

    margin-bottom:18px;

    color:white;

}

.discord-content p{

    margin-bottom:24px;

}

.preview-buttons{

    display:flex;

    gap:15px;

}

.preview-buttons button{

    padding:12px 20px;

    border-radius:10px;

    background:#5865F2;

    color:white;

    font-weight:600;

    transition:.3s;

}

.preview-buttons button:last-child{

    background:#313338;

}

.preview-buttons button:hover{

    transform:translateY(-3px);

}

/*==================================
 STEP 3.3
 SECTION HEADER
==================================*/

.section-header{

    max-width:750px;

    margin:0 auto 70px;

    text-align:center;

}

.section-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 18px;

    margin-bottom:20px;

    border-radius:999px;

    background:rgba(139,92,246,.12);

    border:1px solid rgba(139,92,246,.25);

    color:#c4b5fd;

    font-size:14px;

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

}

.section-tag svg{

    width:18px;

    height:18px;

}

.section-header h2{

    margin-bottom:20px;

}

.section-header p{

    max-width:650px;

    margin:auto;

    color:#9ca3af;

    font-size:18px;

}

/*==================================
 TRUSTED SECTION
==================================*/

.trusted{

    text-align:center;

}

.trusted-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:28px;

    margin-top:60px;

}

.trusted-card{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:35px;

    transition:.35s;

    backdrop-filter:blur(20px);

}

.trusted-card:hover{

    transform:translateY(-10px);

    border-color:#8b5cf6;

    box-shadow:0 20px 45px rgba(139,92,246,.18);

}

.trusted-icon{

    width:72px;

    height:72px;

    margin:0 auto 22px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:20px;

    background:linear-gradient(
        135deg,
        rgba(139,92,246,.20),
        rgba(59,130,246,.18)
    );

}

.trusted-icon svg{

    width:34px;

    height:34px;

    color:#8b5cf6;

}

.trusted-card h3{

    margin-bottom:12px;

}

.trusted-card p{

    color:#a1a1aa;

}

/*==================================
 FEATURES
==================================*/

.features-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

}

.feature-card{

    padding:35px;

    border-radius:22px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

    backdrop-filter:blur(20px);

}

.feature-card:hover{

    transform:translateY(-10px);

    border-color:#8b5cf6;

    box-shadow:0 20px 45px rgba(139,92,246,.18);

}

.feature-icon{

    width:64px;

    height:64px;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:22px;

    border-radius:18px;

    background:linear-gradient(
        135deg,
        rgba(139,92,246,.20),
        rgba(59,130,246,.18)
    );

}

.feature-icon svg{

    width:30px;

    height:30px;

    color:#8b5cf6;

}

.feature-card h3{

    margin-bottom:12px;

}

/*==================================
 STATS
==================================*/

.stats{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.stat-card{

    text-align:center;

    padding:45px;

    border-radius:22px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    transition:.35s;

}

.stat-card:hover{

    transform:translateY(-8px);

    border-color:#8b5cf6;

}

.stat-card h2{

    font-size:56px;

    margin-bottom:10px;

    background:linear-gradient(
        90deg,
        #8b5cf6,
        #3b82f6
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.stat-card span{

    color:#9ca3af;

    font-size:18px;

}

/*==================================
 STEP 3.4
 BUILDER PREVIEW
==================================*/

.builder-window{

    display:grid;

    grid-template-columns:280px 1fr 420px;

    gap:30px;

    margin-top:70px;

    align-items:start;

}

/*==================================
 SIDEBAR
==================================*/

.builder-sidebar{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    border-radius:22px;

    padding:25px;

    position:sticky;

    top:100px;

}

.builder-sidebar h3{

    margin-bottom:25px;

}

.builder-item{

    display:flex;

    align-items:center;

    gap:15px;

    padding:14px 16px;

    margin-bottom:12px;

    border-radius:14px;

    cursor:pointer;

    transition:.3s;

}

.builder-item:hover{

    background:rgba(139,92,246,.12);

    color:#8b5cf6;

}

.builder-item svg{

    width:22px;

    height:22px;

}

/*==================================
 EDITOR
==================================*/

.builder-editor{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    overflow:hidden;

    backdrop-filter:blur(20px);

}

.editor-toolbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 22px;

    border-bottom:1px solid rgba(255,255,255,.08);

    background:rgba(255,255,255,.03);

}

.editor-toolbar span{

    display:flex;

    align-items:center;

    gap:10px;

    font-weight:600;

}

.editor-toolbar button{

    background:#8b5cf6;

    color:#fff;

    padding:10px 20px;

    border-radius:12px;

    transition:.3s;

}

.editor-toolbar button:hover{

    background:#a855f7;

}

.editor-canvas{

    padding:30px;

    min-height:520px;

}

.canvas-box{

    min-height:460px;

    border:2px dashed rgba(139,92,246,.35);

    border-radius:18px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    gap:15px;

    color:#8b5cf6;

}

.canvas-box svg{

    width:46px;

    height:46px;

}

/*==================================
 DISCORD PREVIEW
==================================*/

.builder-discord{

    position:sticky;

    top:100px;

}

.discord-message{

    background:#313338;

    border-radius:20px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.08);

}

.discord-top{

    background:#2b2d31;

    padding:18px;

    display:flex;

    align-items:center;

    gap:10px;

    font-weight:600;

}

.discord-embed{

    padding:22px;

}

.discord-embed h3{

    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:18px;

}

.discord-embed p{

    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:12px;

}

.discord-buttons{

    display:flex;

    gap:12px;

    margin-top:25px;

}

.discord-buttons button{

    padding:12px 18px;

    border-radius:10px;

    background:#5865F2;

    color:white;

    transition:.3s;

}

.discord-buttons button:last-child{

    background:#404249;

}

.discord-buttons button:hover{

    transform:translateY(-3px);

}

/*==================================
 TEMPLATES
==================================*/

.template-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    margin-top:60px;

}

.template-card{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:35px;

    text-align:center;

    transition:.35s;

    backdrop-filter:blur(20px);

}

.template-card:hover{

    transform:translateY(-10px);

    border-color:#8b5cf6;

    box-shadow:0 20px 40px rgba(139,92,246,.20);

}

.template-card svg{

    width:42px;

    height:42px;

    color:#8b5cf6;

    margin-bottom:20px;

}

.template-card h3{

    margin-top:10px;

}

/*==================================
 STEP 3.5
 FAQ
==================================*/

.faq-container{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

    margin-top:60px;

}

.faq-card{

    padding:32px;

    border-radius:22px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    transition:.35s;

}

.faq-card:hover{

    transform:translateY(-8px);

    border-color:#8b5cf6;

    box-shadow:0 20px 40px rgba(139,92,246,.18);

}

.faq-title{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:20px;

}

.faq-title svg{

    width:28px;

    height:28px;

    color:#8b5cf6;

}

.faq-card p{

    color:#9ca3af;

    line-height:1.8;

}

/*==================================
 CTA
==================================*/

.cta{

    padding:140px 8%;

}

.cta-card{

    max-width:1000px;

    margin:auto;

    text-align:center;

    padding:80px 60px;

    border-radius:30px;

    background:linear-gradient(
        135deg,
        rgba(139,92,246,.18),
        rgba(59,130,246,.12)
    );

    border:1px solid rgba(139,92,246,.25);

    backdrop-filter:blur(25px);

}

.cta-icon{

    width:70px;

    height:70px;

    color:#8b5cf6;

    margin-bottom:25px;

}

.cta h2{

    margin-bottom:20px;

}

.cta p{

    max-width:650px;

    margin:0 auto 35px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

/*==================================
 FOOTER
==================================*/

footer{

    padding:80px 8% 30px;

    border-top:1px solid rgba(255,255,255,.08);

    background:rgba(255,255,255,.02);

}

.footer-top{

    display:flex;

    justify-content:space-between;

    gap:60px;

    margin-bottom:40px;

}

.footer-brand{

    max-width:400px;

}

.footer-brand h2{

    margin-bottom:18px;

}

.footer-links{

    display:grid;

    grid-template-columns:repeat(2,auto);

    gap:18px 40px;

}

.footer-links a{

    display:flex;

    align-items:center;

    gap:10px;

    color:#cbd5e1;

    transition:.3s;

}

.footer-links a:hover{

    color:#8b5cf6;

}

.footer-links svg{

    width:18px;

    height:18px;

}

.footer-bottom{

    padding-top:30px;

    border-top:1px solid rgba(255,255,255,.06);

    text-align:center;

}

.footer-bottom p{

    color:#71717a;

}

/*==================================
 SCROLL TO TOP
==================================*/

.scroll-top{

    position:fixed;

    right:30px;

    bottom:30px;

    width:58px;

    height:58px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        #8b5cf6,
        #3b82f6
    );

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    border:none;

    cursor:pointer;

    box-shadow:0 15px 35px rgba(139,92,246,.35);

    transition:.35s;

    z-index:999;

}

.scroll-top:hover{

    transform:translateY(-6px) scale(1.08);

}

.scroll-top svg{

    width:24px;

    height:24px;

}

/*==================================
 GLASS EFFECT
==================================*/

.trusted-card,
.feature-card,
.stat-card,
.template-card,
.faq-card,
.builder-sidebar,
.builder-editor,
.discord-message{

    backdrop-filter:blur(20px);

    -webkit-backdrop-filter:blur(20px);

}

/*==================================
 HOVER GLOW
==================================*/

.trusted-card:hover,
.feature-card:hover,
.template-card:hover{

    box-shadow:
        0 0 25px rgba(139,92,246,.15),
        0 20px 45px rgba(139,92,246,.18);

}

/*==================================
 STEP 3.6
 FINAL POLISH
==================================*/

/* Icon animation */

.trusted-icon svg,
.feature-icon svg,
.template-card svg,
.faq-title svg{

    transition:transform .3s ease;

}

.trusted-card:hover svg,
.feature-card:hover svg,
.template-card:hover svg,
.faq-card:hover svg{

    transform:scale(1.15) rotate(-5deg);

}

/* Gradient text */

.gradient-text{

    background:linear-gradient(
        90deg,
        #8b5cf6,
        #3b82f6
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

}

/* Fade animation */

.fade-up{

    animation:fadeUp .8s ease forwards;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(35px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/* Floating */

.floating{

    animation:floating 5s ease-in-out infinite;

}

@keyframes floating{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-10px);

    }

    100%{

        transform:translateY(0);

    }

}

/* Pulse */

.pulse{

    animation:pulse 2s infinite;

}

@keyframes pulse{

    0%{

        box-shadow:0 0 0 0 rgba(139,92,246,.45);

    }

    70%{

        box-shadow:0 0 0 18px transparent;

    }

    100%{

        box-shadow:0 0 0 0 transparent;

    }

}

/* Selection */

::selection{

    background:#8b5cf6;

    color:#fff;

}

/*==============================
 MOBILE
==============================*/

@media(max-width:1100px){

    .hero{

        grid-template-columns:1fr;

        text-align:center;

    }

    .hero-left{

        align-items:center;

    }

    .builder-window{

        grid-template-columns:1fr;

    }

    .builder-sidebar,
    .builder-discord{

        position:static;

    }

    .trusted-grid,
    .features-grid,
    .template-grid,
    .stats,
    .faq-container{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    h1{

        font-size:48px;

    }

    h2{

        font-size:34px;

    }

    section{

        padding:90px 24px;

    }

    .navbar{

        padding:18px 24px;

    }

    .nav-links{

        display:none;

    }

    .hero-buttons,
    .cta-buttons{

        flex-direction:column;

        width:100%;

    }

    .primary-btn,
    .secondary-btn{

        width:100%;

        text-align:center;

    }

    .trusted-grid,
    .features-grid,
    .template-grid,
    .stats,
    .faq-container{

        grid-template-columns:1fr;

    }

    .footer-top{

        flex-direction:column;

    }

    .footer-links{

        grid-template-columns:1fr;

    }

}

@media(max-width:480px){

    h1{

        font-size:38px;

    }

    h2{

        font-size:28px;

    }

    .logo{

        font-size:22px;

    }

    .discord-buttons{

        flex-direction:column;

    }

    .preview-buttons{

        flex-direction:column;

    }

    .scroll-top{

        width:50px;

        height:50px;

        right:20px;

        bottom:20px;

    }

}

/*==================================
LUCIDE ICON FIX
==================================*/

svg.lucide{

    width:30px;
    height:30px;

    flex-shrink:0;

    stroke-width:2;

    vertical-align:middle;

}

.login-btn svg,
.discord-btn svg,
.primary-btn svg,
.secondary-btn svg{

    width:18px;
    height:18px;

}

.hero-badge svg{

    width:16px;
    height:16px;

}

.navbar a{

    display:flex;
    align-items:center;
    gap:8px;

}

/* ==========================
   MOBILE RESPONSIVE
========================== */

@media (max-width: 992px){

    h1{
        font-size:52px;
    }

    h2{
        font-size:38px;
    }

    .hero{
        grid-template-columns:1fr;
        text-align:center;
        gap:50px;
    }

    .hero-left{
        align-items:center;
    }

    .trusted-grid,
    .features-grid,
    .stats,
    .template-grid,
    .faq-container{
        grid-template-columns:repeat(2,1fr);
    }

    .builder-window{
        grid-template-columns:1fr;
    }

    .builder-sidebar,
    .builder-discord{
        position:static;
    }

}

@media (max-width:768px){

    .navbar{
        padding:15px 20px;
    }

    .nav-links{
        display:none;
    }

    .hero{
        padding-top:110px;
    }

    h1{
        font-size:44px;
    }

    h2{
        font-size:32px;
    }

    section{
        padding:80px 20px;
    }

    .trusted-grid,
    .features-grid,
    .stats,
    .template-grid,
    .faq-container{
        grid-template-columns:1fr;
    }

    .hero-buttons,
    .cta-buttons{
        flex-direction:column;
        width:100%;
    }

    .primary-btn,
    .secondary-btn,
    .login-btn{
        width:100%;
    }

    .footer-top{
        flex-direction:column;
    }

}

@media (max-width:480px){

    h1{
        font-size:36px;
    }

    h2{
        font-size:28px;
    }

    .logo{
        font-size:22px;
    }

    .primary-btn,
    .secondary-btn,
    .login-btn{
        padding:14px 18px;
        font-size:15px;
    }

    .trusted-card,
    .feature-card,
    .template-card,
    .faq-card,
    .stat-card{
        padding:25px;
    }

}

/* ---------- Brand logo ---------- */
.brand-logo {
    display: block;
    object-fit: contain;
    object-position: center;
    border-radius: 50%;
    flex-shrink: 0;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
}

.brand-logo-sm {
    width: 28px;
    height: 28px;
}

.brand-logo-md {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
}

.brand-logo-lg {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
}

.brand-logo-nav {
    width: 36px;
    height: 36px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.server-bot-hint {
    font-size: 13px;
    color: var(--muted, #a0a0b0);
    margin: 0 0 12px;
    line-height: 1.45;
}

.server-card--needs-bot {
    border-color: rgba(139, 92, 246, 0.35);
}

.select-server-header {
    text-align: center;
}

.select-server-header p {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
