*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Inter, Arial, sans-serif;
}

body{
    min-height:100vh;
    background:
        radial-gradient(circle at top right, rgba(255,136,0,.18), transparent 28%),
        radial-gradient(circle at bottom left, rgba(255,136,0,.08), transparent 25%),
        #050505;
    color:white;
}

/* PAGE */

.track-page{
    min-height:100vh;
    padding:35px 0;
}

.track-container{
    width:95%;
    max-width:1450px;
    margin:auto;
}

/* GRID */

.dashboard-grid{
    display:grid;
    grid-template-columns:1fr 360px;
    gap:24px;
}

/* MAIN PANEL */

.main-panel{
    background:
    linear-gradient(145deg,#161616,#0b0b0b);

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

    border-radius:34px;

    padding:34px;

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

/* TOP SUMMARY */

.top-summary{
    display:grid;
    grid-template-columns:80px 1fr auto;
    gap:22px;
    align-items:flex-start;
    margin-bottom:34px;
    position:relative;
    overflow:hidden;
}

.top-summary::after{
    content:"";
    position:absolute;
    right:-120px;
    top:-90px;

    width:280px;
    height:280px;

    border-radius:50%;

    background:rgba(255,140,0,.16);

    filter:blur(30px);
}

.summary-icon{
    width:72px;
    height:72px;

    border-radius:22px;

    background:rgba(255,140,0,.13);

    color:#ff9500;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:34px;
}

.summary-content span{
    color:#9ca3af;
    font-size:14px;
    letter-spacing:2px;
    font-weight:800;
}

.summary-content h1{
    font-size:52px;
    margin:10px 0 10px;
    line-height:1.05;
}

.summary-content p{
    color:#b8b8b8;
    font-size:18px;
    margin-bottom:12px;
}

.summary-content strong{
    font-size:18px;
}

.summary-content strong b{
    color:#ff9500;
}

.active-pill{
    background:
    rgba(255,140,0,.12);

    border:1px solid rgba(255,140,0,.35);

    color:#ffb347;

    padding:14px 24px;

    border-radius:999px;

    font-weight:800;

    height:max-content;
}

.active-pill i{
    font-size:10px;
    margin-right:8px;
}

/* JOURNEY */

.journey-box{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;

    background:
    linear-gradient(145deg,#171a1d,#0e1012);

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

    border-radius:28px;

    padding:30px 24px;

    margin-bottom:32px;
}

.journey-step{
    min-width:110px;
    text-align:center;
}

.journey-icon{
    width:72px;
    height:72px;

    margin:0 auto 14px;

    border-radius:50%;

    border:2px solid #303030;

    background:#111;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:26px;

    color:#777;
}

.journey-step h3{
    font-size:17px;
    margin-bottom:6px;
}

.journey-step p{
    color:#888;
    font-size:14px;
}

.journey-step.active .journey-icon{
    border-color:#ff9500;
    color:#ff9500;

    box-shadow:
    0 0 24px rgba(255,140,0,.35);
}

.journey-step.active h3,
.journey-step.active p{
    color:#ffb347;
}

.journey-line{
    flex:1;
    height:3px;
    background:#333;
    border-radius:999px;
}

.journey-line.active{
    background:
    linear-gradient(90deg,#ffb347,#ff6a00);
}

.journey-line.dashed{
    background:
    repeating-linear-gradient(
        90deg,
        #333 0,
        #333 8px,
        transparent 8px,
        transparent 16px
    );
}

/* SECTION TITLE */

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

    padding-top:24px;

    margin-bottom:20px;

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

    color:#d1d5db;

    font-weight:800;

    letter-spacing:2px;
}

.section-title span{
    width:3px;
    height:22px;

    border-radius:999px;

    background:#ff9500;
}

/* TABLE */

.shipment-table{
    border-radius:24px;

    overflow:hidden;

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

    background:
    linear-gradient(145deg,#15181c,#0d1012);
}

.shipment-row{
    display:grid;
    grid-template-columns:1fr auto;

    align-items:center;

    gap:20px;

    padding:22px 24px;

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

.shipment-row:last-child{
    border-bottom:none;
}

.shipment-left{
    display:flex;
    align-items:center;
    gap:18px;
}

.shipment-icon{
    width:44px;
    height:44px;

    border-radius:14px;

    background:#1d2126;

    color:#9ca3af;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:18px;
}

.shipment-left span{
    color:#d1d5db;
    font-size:17px;
}

.shipment-row strong{
    font-size:18px;
}

/* MAP CARD */

.map-card{
    margin-top:30px;
    min-height:160px;
    border-radius:24px;
    border:1px solid rgba(255,255,255,.07);

    background:
        radial-gradient(circle at center, rgba(255,140,0,.14), transparent 30%),
        linear-gradient(145deg,#151515,#0a0a0a);

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:30px 45px;

    position:relative;
    overflow:hidden;
}

.map-card::before{
    content:"";
    position:absolute;
    inset:0;

    opacity:.16;

    background-image:
    radial-gradient(circle, #fff 1px, transparent 1px);

    background-size:18px 18px;
}

.safe-box,
.help-box{
    position:relative;
    z-index:2;

    display:flex;
    align-items:center;

    gap:18px;
}

.safe-box{
    max-width:520px;
}

.safe-box i,
.help-box i{
    color:#ff9500;
    font-size:28px;
    min-width:28px;
}

.safe-box h3,
.help-box h3{
    font-size:20px;
    margin-bottom:6px;
}

.safe-box p,
.help-box p{
    color:#aaa;
    line-height:1.5;
}

.help-box a{
    color:#ff9500;
    font-weight:700;
}

/* RIGHT SIDE */

.side-panel{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.eta-panel,
.history-panel{
    background:
    linear-gradient(145deg,#161616,#0b0b0b);

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

    border-radius:34px;

    padding:30px;

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

.eta-panel span,
.history-panel > span{
    color:#9ca3af;
    font-size:14px;
    letter-spacing:2px;
    font-weight:800;
}

.eta-icon{
    width:62px;
    height:62px;

    margin-top:48px;

    border-radius:18px;

    background:rgba(255,140,0,.13);

    color:#ff9500;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:26px;
}

.eta-panel h2{
    font-size:52px;
    margin-top:24px;
}

.eta-panel p{
    color:#aaa;
    margin-top:8px;
}

/* HISTORY */

.history-list{
    margin-top:36px;
    position:relative;
}

.history-list::before{
    content:"";

    position:absolute;

    left:10px;
    top:12px;
    bottom:20px;

    width:2px;

    background:#555;
}

.history-item{
    display:grid;
    grid-template-columns:24px 1fr auto;

    gap:14px;

    margin-bottom:34px;

    position:relative;
}

.history-dot{
    width:18px;
    height:18px;

    border-radius:50%;

    background:#777;

    margin-top:4px;

    z-index:2;
}

.history-item.latest .history-dot{
    background:#ff9500;

    box-shadow:
    0 0 18px rgba(255,140,0,.8);
}

.history-item h3{
    font-size:18px;
    margin-bottom:6px;
}

.history-item p{
    color:#aaa;
    margin-bottom:6px;
}

.history-item small{
    color:#888;
}

.history-item b{
    align-self:start;

    background:rgba(255,140,0,.13);

    color:#ffb347;

    padding:8px 12px;

    border-radius:999px;

    font-size:13px;
}

/* BACK */

.back-link{
    display:block;
    text-align:center;

    margin-top:28px;

    color:#ffb347;

    text-decoration:none;

    font-weight:800;
}

/* TABLET */

@media(max-width:1100px){

    .dashboard-grid{
        grid-template-columns:1fr;
    }

    .side-panel{
        display:grid;
        grid-template-columns:1fr 1fr;
    }
}

/* SMALL TABLET */

@media(max-width:850px){

    .side-panel{
        grid-template-columns:1fr;
    }

    .top-summary{
        grid-template-columns:1fr;
    }

    .summary-content h1{
        font-size:38px;
    }

    .journey-box{
        overflow-x:auto;
        justify-content:flex-start;
    }

    .journey-step{
        min-width:120px;
    }

    .journey-line{
        min-width:60px;
    }

    .map-card{
        flex-direction:column;
        align-items:flex-start;
        gap:28px;
        padding:28px;
    }

    .safe-box,
    .help-box{
        width:100%;
    }
}

/* MOBILE */

@media(max-width:700px){

    body{
        overflow-x:hidden;
    }

    .track-page{
        padding:16px 0;
    }

    .track-container{
        width:100%;
        padding:0 14px;
    }

    .main-panel,
    .eta-panel,
    .history-panel{
        border-radius:24px;
    }

    .main-panel{
        padding:18px;
    }

    .summary-content h1{
        font-size:30px;
    }

    .summary-content p,
    .summary-content strong{
        font-size:15px;
    }

    .journey-box{
        display:grid;
        grid-template-columns:1fr;
        gap:14px;

        overflow:visible;

        padding:18px;
    }

    .journey-step{
        display:flex;
        align-items:center;
        text-align:left;
        gap:14px;
        width:100%;
    }

    .journey-icon{
        width:54px;
        height:54px;
        min-width:54px;

        margin:0;

        font-size:20px;
    }

    .journey-line{
        width:3px;
        height:26px;

        min-width:3px;

        margin-left:25px;

        flex:none;
    }

    .journey-line.dashed{
        background:
        repeating-linear-gradient(
            180deg,
            #333 0,
            #333 8px,
            transparent 8px,
            transparent 16px
        );
    }

    .journey-line.active{
        background:
        linear-gradient(180deg,#ffb347,#ff6a00);
    }

    .shipment-row{
        grid-template-columns:1fr;
        gap:10px;
        padding:16px;
    }

    .shipment-left{
        gap:12px;
    }

    .shipment-row strong{
        padding-left:56px;
        text-align:left;
        font-size:15px;
        word-break:break-word;
    }

    .map-card{
        padding:22px;
    }

    .safe-box,
    .help-box{
        align-items:flex-start;
    }

    .eta-panel h2{
        font-size:36px;
    }

    .history-item{
        grid-template-columns:24px 1fr;
    }

    .history-item b{
        grid-column:2;
        width:max-content;
        margin-top:6px;
    }
}

/* LANDING */

.landing-page{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding:40px 0;

    background:
    radial-gradient(circle at top right,
    rgba(255,140,0,.18),
    transparent 30%),

    radial-gradient(circle at bottom left,
    rgba(255,140,0,.08),
    transparent 30%),

    #050505;
}

.landing-container{
    width:95%;
    max-width:1450px;
    margin:auto;
}

.landing-grid{
    display:grid;
    grid-template-columns:1fr 500px;
    gap:60px;
    align-items:center;
}

.landing-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;

    background:rgba(255,140,0,.12);

    border:1px solid rgba(255,140,0,.22);

    color:#ffb347;

    padding:12px 18px;

    border-radius:999px;

    font-size:13px;

    font-weight:800;

    letter-spacing:1px;

    margin-bottom:28px;
}

.landing-left h1{
    font-size:72px;
    line-height:1.02;
    margin-bottom:24px;
}

.landing-left p{
    color:#b8b8b8;
    font-size:20px;
    line-height:1.7;
    max-width:720px;
}

.landing-stats{
    display:flex;
    gap:20px;
    margin-top:40px;
}

.stat-card{
    min-width:170px;

    background:
    linear-gradient(145deg,#151515,#0b0b0b);

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

    border-radius:24px;

    padding:28px;
}

.stat-card strong{
    display:block;
    color:#ff9500;
    font-size:34px;
    margin-bottom:10px;
}

.stat-card span{
    color:#aaa;
    line-height:1.5;
}

.tracking-card{
    background:
    linear-gradient(145deg,#161616,#0b0b0b);

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

    border-radius:34px;

    padding:36px;

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

.tracking-top{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:34px;
}

.tracking-icon{
    width:68px;
    height:68px;

    border-radius:20px;

    background:rgba(255,140,0,.12);

    color:#ff9500;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;
}

.tracking-top span{
    color:#9ca3af;
    font-size:13px;
    letter-spacing:2px;
    font-weight:800;
}

.tracking-top h2{
    font-size:34px;
    margin-top:8px;
}

.tracking-form label{
    display:block;
    margin-bottom:12px;
    color:#d1d5db;
    font-weight:700;
}

.input-box{
    position:relative;
    margin-bottom:18px;
}

.input-box i{
    position:absolute;
    left:18px;
    top:50%;
    transform:translateY(-50%);
    color:#777;
}

.input-box input{
    width:100%;
    height:64px;

    padding:0 20px 0 52px;

    border:none;
    outline:none;

    border-radius:18px;

    background:#121212;

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

    color:white;

    font-size:16px;
}

.input-box input:focus{
    border-color:#ff9500;
}

.tracking-form button{
    width:100%;
    height:64px;

    border:none;

    border-radius:18px;

    background:
    linear-gradient(135deg,#ffb347,#ff6a00);

    color:white;

    font-size:16px;

    font-weight:800;

    cursor:pointer;

    margin-top:8px;
}

.tracking-form button i{
    margin-right:10px;
}

.track-error{
    color:#ff8a8a;
    margin-bottom:14px;
}

.tracking-bottom{
    margin-top:30px;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
}

.mini-info{
    display:flex;
    gap:16px;
    align-items:flex-start;

    background:#101010;

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

    border-radius:20px;

    padding:20px;
}

.mini-info i{
    color:#ff9500;
    font-size:22px;
}

.mini-info strong{
    display:block;
    margin-bottom:6px;
}

.mini-info p{
    color:#999;
    font-size:14px;
    line-height:1.5;
}

/* RESPONSIVE */

@media(max-width:1100px){

    .landing-grid{
        grid-template-columns:1fr;
    }

    .landing-left h1{
        font-size:56px;
    }
}

@media(max-width:700px){

    .landing-page{
        padding:18px 0;
    }

    .landing-container{
        width:100%;
        padding:0 14px;
    }

    .landing-left h1{
        font-size:38px;
    }

    .landing-left p{
        font-size:16px;
    }

    .landing-stats{
        flex-direction:column;
    }

    .tracking-card{
        padding:22px;
        border-radius:24px;
    }

    .tracking-top h2{
        font-size:28px;
    }

    .tracking-bottom{
        grid-template-columns:1fr;
    }

    .input-box input,
    .tracking-form button{
        height:58px;
    }
}