/* =====================================================
   AURA
   GLOBAL RESET
===================================================== */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{
    --bg:#0c0c0c;
    --panel:#101215;
    --panel-2:#0e1014;
    --text:#ffffff;
    --muted:rgba(255,255,255,.6);
    --border:rgba(255,255,255,.10);
    --brand:#3D81E3;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',system-ui,sans-serif;
    background:var(--bg);
    color:white;
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
}

::selection{
    background:rgba(61,129,227,.3);
}

a{
    text-decoration:none;
    color:inherit;
}

button{
    border:none;
    outline:none;
    font-family:inherit;
    cursor:pointer;
}

img,
svg{
    display:block;
}

/* =====================================================
   VIDEO BACKGROUND
===================================================== */

.video-bg{
    position:fixed;
    inset:0;
    z-index:-5;
    overflow:hidden;
    pointer-events:none;
}

.video-bg video{
    width:100%;
    height:100%;
    object-fit:cover;
}

.video-bg::after{
    content:'';
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        to bottom,
        rgba(0,0,0,.55),
        rgba(0,0,0,.45)
    );
}

/* =====================================================
   GUIDE LINES
===================================================== */

.guide-line{
    position:fixed;
    top:0;
    bottom:0;
    width:1px;
    background:rgba(255,255,255,.08);
    z-index:5;
    pointer-events:none;
}

.left-guide{
    left:calc(50% - 36rem);
}

.right-guide{
    right:calc(50% - 36rem);
}

/* =====================================================
   WRAPPER
===================================================== */

.site-wrapper{
    position:relative;
    z-index:10;
}

/* =====================================================
   SHINY ANIMATION
===================================================== */

@keyframes shiny{

    0%{
        background-position:-200% center;
    }

    100%{
        background-position:200% center;
    }

}

/* =====================================================
   LIQUID GLASS
===================================================== */

.liquid-glass{

    background:rgba(255,255,255,.01);

    background-blend-mode:luminosity;

    backdrop-filter:blur(4px);

    position:relative;

    overflow:hidden;

    box-shadow:
        inset 0 1px 1px rgba(255,255,255,.1);

}

.liquid-glass::before{

    content:'';

    position:absolute;

    inset:0;

    border-radius:inherit;

    padding:1.4px;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,.45) 0%,
        rgba(255,255,255,.15) 20%,
        rgba(255,255,255,0) 40%,
        rgba(255,255,255,0) 60%,
        rgba(255,255,255,.15) 80%,
        rgba(255,255,255,.45) 100%
    );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;

    mask-composite:exclude;

    pointer-events:none;
}

/* =====================================================
   CONTAINER
===================================================== */

.nav-container,
.mac-inner,
.hero,
.inbox-section,
.triage-section,
.logo-cloud,
.testimonials,
.final-cta{
    width:100%;
}

.nav-container,
.mac-inner,
.inbox-section,
.triage-grid,
.logo-cloud,
.testimonial-grid,
.final-cta{
    max-width:1200px;
    margin:auto;
}

/* =====================================================
   NAVBAR
===================================================== */

.navbar{
    padding:28px 24px;
}

.nav-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.logo-mark{
    width:32px;
    height:32px;
    color:white;
}

.logo-mark svg{
    width:100%;
    height:100%;
    fill:white;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:34px;
}

.nav-links a{
    color:rgba(255,255,255,.7);
    font-size:.9rem;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover{
    color:white;
}

/* =====================================================
   APPLE BUTTON
===================================================== */

.apple-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    padding:14px 22px;

    border-radius:999px;

    background:white;
    color:black;

    font-weight:600;
    font-size:.9rem;

    transition:.3s;
}

.apple-btn:hover{
    transform:translateY(-2px);
    background:#f5f5f5;
}

.apple-btn:active{
    transform:scale(.98);
}

.apple-icon{
    width:14px;
    height:14px;
}

/* =====================================================
   HERO
===================================================== */

.hero{

    max-width:1000px;

    margin:auto;

    text-align:center;

    padding-top:90px;
    padding-bottom:110px;

    display:flex;
    flex-direction:column;
    align-items:center;
}

.hero h1{

    display:flex;
    flex-direction:column;

    gap:10px;

    font-size:clamp(3.5rem,8vw,7.5rem);

    font-weight:600;

    letter-spacing:-0.06em;

    line-height:.9;
}

.hero-gradient{

    background-image:
    linear-gradient(
        to right,
        #091020 0%,
        #0B2551 12.5%,
        #A4F4FD 32.5%,
        #00d2ff 50%,
        #0B2551 67.5%,
        #091020 87.5%,
        #091020 100%
    );

    background-size:200% auto;

    animation:shiny 6s linear infinite;

    -webkit-background-clip:text;
    background-clip:text;

    color:transparent;
    -webkit-text-fill-color:transparent;

    filter:url(#c3-noise);
}

.hero p{

    margin-top:36px;

    max-width:560px;

    color:rgba(255,255,255,.6);

    font-size:1rem;

    line-height:1.7;
}

.hero-btn{
    margin-top:32px;
}

.hero small{

    margin-top:16px;

    color:rgba(255,255,255,.4);

    font-size:.75rem;
}

/* =====================================================
   MAC MENU BAR
===================================================== */

.mac-bar{

    height:40px;

    border-top:1px solid rgba(255,255,255,.1);

    border-bottom:1px solid rgba(255,255,255,.1);

    background:rgba(0,0,0,.40);

    backdrop-filter:blur(12px);
}

.mac-inner{

    height:100%;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 24px;

    font-size:.75rem;
}

.mac-left{

    display:flex;

    align-items:center;

    gap:18px;
}

.mac-left strong{
    font-weight:700;
}

.mac-left span{
    color:rgba(255,255,255,.75);
}

.mac-right{
    color:rgba(255,255,255,.75);
}

/* =====================================================
   INBOX SECTION
===================================================== */

.inbox-section{
    padding:80px 24px 120px;
}

.inbox-window{
    background:rgba(14,16,20,.92);
    border:1px solid rgba(255,255,255,.10);
    backdrop-filter:blur(24px);
    border-radius:24px;
    overflow:hidden;
    box-shadow:
        0 20px 80px rgba(0,0,0,.45),
        inset 0 1px 0 rgba(255,255,255,.05);
}

/* =====================================================
   WINDOW TOP
===================================================== */

.window-top{
    height:48px;
    border-bottom:1px solid rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
}

.traffic{
    position:absolute;
    left:18px;
    display:flex;
    gap:8px;
}

.traffic span{
    width:12px;
    height:12px;
    border-radius:50%;
}

.red{
    background:#ff5f57;
}

.yellow{
    background:#febc2e;
}

.green{
    background:#28c840;
}

.window-title{
    font-size:.75rem;
    color:rgba(255,255,255,.55);
}

/* =====================================================
   GRID
===================================================== */

.inbox-grid{
    display:grid;
    grid-template-columns:3fr 4fr 5fr;
    height:520px;
}

/* =====================================================
   SIDEBAR
===================================================== */

.sidebar{
    border-right:1px solid rgba(255,255,255,.08);
    background:rgba(0,0,0,.25);
    padding:20px;
}

.compose-btn{
    width:100%;
    border-radius:12px;
    background:#fff;
    color:#000;
    font-weight:600;
    font-size:.8rem;
    padding:12px;
    transition:.3s;
}

.compose-btn:hover{
    background:#f4f4f4;
}

.sidebar-nav{
    margin-top:22px;
    display:flex;
    flex-direction:column;
    gap:4px;
}

.sidebar-nav a{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 12px;
    border-radius:10px;
    color:rgba(255,255,255,.65);
    font-size:.88rem;
    transition:.25s;
}

.sidebar-nav a:hover{
    background:rgba(255,255,255,.05);
}

.sidebar-nav .active{
    background:rgba(255,255,255,.10);
    color:white;
}

.sidebar-nav span{
    color:rgba(255,255,255,.45);
    font-size:.75rem;
}

.labels{
    margin-top:34px;
}

.labels h5{
    font-size:.65rem;
    letter-spacing:.15em;
    color:rgba(255,255,255,.35);
    margin-bottom:16px;
}

.label-row{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:12px;
    color:rgba(255,255,255,.75);
    font-size:.85rem;
}

.dot{
    width:8px;
    height:8px;
    border-radius:50%;
}

.work{
    background:#00d2ff;
}

.personal{
    background:#A4F4FD;
}

.travel{
    background:#f59e0b;
}

.finance{
    background:#10b981;
}

/* =====================================================
   MESSAGE LIST
===================================================== */

.message-list{
    border-right:1px solid rgba(255,255,255,.08);
    overflow:auto;
}

.mail-search{
    height:56px;
    display:flex;
    align-items:center;
    padding:0 18px;
    border-bottom:1px solid rgba(255,255,255,.06);
    color:rgba(255,255,255,.45);
    font-size:.85rem;
}

.message{
    padding:16px 18px;
    border-bottom:1px solid rgba(255,255,255,.05);
    cursor:pointer;
    transition:.25s;
}

.message:hover{
    background:rgba(255,255,255,.03);
}

.message.active{
    background:rgba(255,255,255,.06);
}

.msg-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.msg-header strong{
    font-size:.85rem;
    font-weight:600;
}

.msg-header span{
    color:rgba(255,255,255,.40);
    font-size:.72rem;
}

.subject{
    margin-top:8px;
    font-size:.85rem;
    color:white;
}

.preview{
    margin-top:6px;
    font-size:.78rem;
    line-height:1.45;
    color:rgba(255,255,255,.50);
}

.unread strong{
    color:white;
}

/* =====================================================
   READER
===================================================== */

.reader{
    display:flex;
    flex-direction:column;
    overflow:auto;
}

.reader-toolbar{
    height:56px;
    display:flex;
    align-items:center;
    gap:10px;
    padding:0 16px;
    border-bottom:1px solid rgba(255,255,255,.06);
}

.reader-toolbar button{
    width:28px;
    height:28px;
    border-radius:8px;
    background:transparent;
    color:rgba(255,255,255,.70);
    transition:.25s;
}

.reader-toolbar button:hover{
    background:rgba(255,255,255,.05);
}

.reader-toolbar .more{
    margin-left:auto;
}

.reader-header{
    padding:24px;
}

.reader-header h3{
    font-size:1.35rem;
    margin-bottom:18px;
    font-weight:600;
}

.sender{
    display:flex;
    align-items:center;
    gap:12px;
}

.avatar{
    width:28px;
    height:28px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:.8rem;
    font-weight:700;
    background:
    linear-gradient(
        135deg,
        #00d2ff,
        #0B2551
    );
}

.sender strong{
    display:block;
    font-size:.82rem;
}

.sender div div{
    color:rgba(255,255,255,.45);
    font-size:.75rem;
}

.work-pill{
    margin-left:auto;
    padding:5px 10px;
    border-radius:999px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    font-size:.7rem;
}

/* =====================================================
   SUMMARY CARD
===================================================== */

.summary-card{
    margin:0 24px;
    padding:18px;
    border-radius:16px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.06);
}

.summary-title{
    color:#A4F4FD;
    font-size:.8rem;
    font-weight:600;
    margin-bottom:10px;
}

.summary-card p{
    color:rgba(255,255,255,.75);
    font-size:.82rem;
    line-height:1.6;
}

/* =====================================================
   MAIL BODY
===================================================== */

.mail-body{
    padding:24px;
}

.mail-body p{
    margin-bottom:18px;
    line-height:1.75;
    color:rgba(255,255,255,.82);
    font-size:.92rem;
}

.signature{
    color:rgba(255,255,255,.45) !important;
}

.attachment{
    margin:0 24px 24px;
    display:inline-flex;
    align-items:center;
    gap:8px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,.08);
    background:rgba(255,255,255,.03);
    padding:10px 14px;
    width:max-content;
    color:rgba(255,255,255,.75);
    font-size:.82rem;
}

/* =====================================================
   TRIAGE SECTION
===================================================== */

.triage-section{
    padding:40px 24px 120px;
}

.triage-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:start;
}

.eyebrow{
    display:flex;
    align-items:center;
    gap:10px;
    color:rgba(255,255,255,.80);
    font-size:.85rem;
}

.eyebrow span{
    width:6px;
    height:6px;
    border-radius:50%;
    background:white;
}

.tag{
    border:1px solid rgba(255,255,255,.10);
    border-radius:999px;
    padding:4px 8px;
    color:rgba(255,255,255,.45);
    font-size:.72rem;
}

.triage-left h2{
    margin-top:22px;
    font-size:clamp(2.4rem,5vw,4rem);
    line-height:1.02;
    letter-spacing:-.05em;
}

.triage-left p{
    margin-top:24px;
    max-width:540px;
    color:rgba(255,255,255,.60);
    line-height:1.8;
}

.chips{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:26px;
}

.chips span{
    padding:10px 14px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,.10);
    background:rgba(255,255,255,.03);
    font-size:.78rem;
    color:rgba(255,255,255,.75);
}

/* =====================================================
   TRIAGE RIGHT
===================================================== */

.triage-right{
    border-radius:24px;
    padding:22px;
}

.triage-top{
    color:rgba(255,255,255,.55);
    margin-bottom:18px;
    font-size:.82rem;
}

.triage-cards{
    display:grid;
    gap:14px;
}

.triage-card{
    border-radius:14px;
    padding:16px;
}

.triage-card h4{
    margin-bottom:10px;
    font-size:.9rem;
}

.triage-card ul{
    list-style:none;
}

.triage-card li{
    color:rgba(255,255,255,.65);
    font-size:.8rem;
    line-height:1.8;
}

/* =====================================================
   LOGO CLOUD
===================================================== */

.logo-cloud{
    padding:60px 24px 120px;
}

.logo-kicker{
    text-align:center;
    text-transform:uppercase;
    letter-spacing:.22em;
    color:rgba(255,255,255,.40);
    font-size:.72rem;
}

.logos{
    margin-top:50px;
    display:grid;
    grid-template-columns:repeat(8,1fr);
    gap:24px;
}

.logos span{
    text-align:center;
    font-size:.95rem;
    font-weight:600;
    color:rgba(255,255,255,.50);
    transition:.3s;
}

.logos span:hover{
    color:white;
}

/* =====================================================
   TESTIMONIALS
===================================================== */

.testimonials{
    padding:100px 24px 120px;
    border-top:1px solid rgba(255,255,255,.10);
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.testimonial-card{
    border-radius:24px;
    padding:28px;
    min-height:280px;
}

.testimonial-card blockquote{
    color:rgba(255,255,255,.82);
    font-size:.95rem;
    line-height:1.8;
}

.testimonial-card figcaption{
    margin-top:28px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.10);
}

.person{
    font-size:.95rem;
    font-weight:600;
}

.role{
    margin-top:6px;
    color:rgba(255,255,255,.50);
    font-size:.78rem;
}

.company{
    margin-top:12px;
    font-size:.72rem;
    letter-spacing:.15em;
    font-weight:700;
}

/* =====================================================
   FINAL CTA
===================================================== */

.final-cta{
    padding:100px 24px 140px;
}

.cta-card{
    position:relative;
    overflow:hidden;
    border-radius:32px;
    text-align:center;
    padding:90px 50px;
}

.cta-glow{
    position:absolute;
    inset:0;

    background:
    radial-gradient(
        600px circle at 50% 0%,
        rgba(255,255,255,.15),
        transparent 70%
    );

    opacity:.3;

    pointer-events:none;
}

.cta-card h2{
    position:relative;
    z-index:2;

    font-size:clamp(3rem,6vw,6rem);

    line-height:1.02;

    letter-spacing:-.05em;

    font-weight:600;
}

.cta-card p{
    position:relative;
    z-index:2;

    max-width:600px;

    margin:28px auto 0;

    color:rgba(255,255,255,.60);

    line-height:1.8;
}

.cta-buttons{
    position:relative;
    z-index:2;

    margin-top:40px;

    display:flex;

    justify-content:center;

    gap:16px;

    flex-wrap:wrap;
}

.sales-btn{
    border-radius:999px;

    border:1px solid rgba(255,255,255,.15);

    background:transparent;

    color:white;

    padding:14px 22px;

    font-size:.9rem;

    font-weight:500;

    transition:.3s;
}

.sales-btn:hover{
    background:rgba(255,255,255,.05);
}

/* =====================================================
   SIMPLE FADE ANIMATIONS
===================================================== */

.fade-up{
    opacity:0;
    transform:translateY(40px);
    transition:
        opacity .9s ease,
        transform .9s ease;
}

.fade-up.visible{
    opacity:1;
    transform:translateY(0);
}

/* =====================================================
   SCROLLBAR
===================================================== */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#0c0c0c;
}

::-webkit-scrollbar-thumb{
    background:rgba(255,255,255,.15);
    border-radius:100px;
}

::-webkit-scrollbar-thumb:hover{
    background:rgba(255,255,255,.25);
}

/* =====================================================
   LARGE TABLET
===================================================== */

@media (max-width:1200px){

    .logos{
        grid-template-columns:repeat(4,1fr);
        row-gap:30px;
    }

}

/* =====================================================
   TABLET
===================================================== */

@media (max-width:1024px){

    .guide-line{
        display:none;
    }

    .nav-links{
        display:none;
    }

    .hero{
        padding-top:70px;
    }

    .hero h1{
        font-size:4.5rem;
    }

    .inbox-grid{
        grid-template-columns:1fr;
        height:auto;
    }

    .sidebar{
        display:none;
    }

    .message-list{
        border-right:none;
        border-bottom:1px solid rgba(255,255,255,.08);
        max-height:420px;
    }

    .reader{
        min-height:650px;
    }

    .triage-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .testimonial-grid{
        grid-template-columns:1fr;
    }

    .logos{
        grid-template-columns:repeat(4,1fr);
    }

    .cta-card{
        padding:70px 30px;
    }

}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width:768px){

    .navbar{
        padding:20px;
    }

    .apple-btn{
        padding:12px 18px;
        font-size:.82rem;
    }

    .hero{
        padding:60px 20px 90px;
    }

    .hero h1{
        font-size:3.4rem;
    }

    .hero p{
        font-size:.95rem;
    }

    .mac-left{
        gap:10px;
        overflow:auto;
    }

    .mac-left span:nth-child(n+6){
        display:none;
    }

    .inbox-section{
        padding:50px 16px 90px;
    }

    .window-title{
        display:none;
    }

    .message{
        padding:14px;
    }

    .reader-header{
        padding:20px;
    }

    .mail-body{
        padding:20px;
    }

    .summary-card{
        margin:0 20px;
    }

    .attachment{
        margin:0 20px 20px;
    }

    .triage-section{
        padding:20px 16px 90px;
    }

    .triage-left h2{
        font-size:2.6rem;
    }

    .chips{
        gap:8px;
    }

    .chips span{
        font-size:.72rem;
    }

    .logo-cloud{
        padding:40px 16px 90px;
    }

    .logos{
        grid-template-columns:repeat(2,1fr);
        gap:24px;
    }

    .testimonials{
        padding:80px 16px;
    }

    .testimonial-card{
        padding:22px;
    }

    .final-cta{
        padding:80px 16px 110px;
    }

    .cta-card{
        padding:60px 22px;
        border-radius:24px;
    }

    .cta-card h2{
        font-size:2.8rem;
    }

    .cta-buttons{
        flex-direction:column;
        align-items:center;
    }

    .cta-buttons button{
        width:100%;
        max-width:320px;
    }

}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width:480px){

    .hero h1{
        font-size:2.8rem;
    }

    .hero p{
        max-width:100%;
    }

    .reader-header h3{
        font-size:1.1rem;
    }

    .mail-body p{
        font-size:.85rem;
    }

    .triage-left h2{
        font-size:2.1rem;
    }

    .cta-card h2{
        font-size:2.2rem;
    }

    .cta-card p{
        font-size:.9rem;
    }

}