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

:root{
    --navy:#071a32;
    --navy2:#0e3457;
    --blue:#1e609f;
    --blue-light:#edf6fb;
    --text:#172a3f;
    --muted:#6d7d8e;
    --line:#dce5ed;
    --bg:#f5f8fb;
    --white:#ffffff;
    --shadow:0 18px 45px rgba(7,26,50,.10);
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:"DM Sans",Arial,sans-serif;
    color:var(--text);
    background:#fff;
    line-height:1.6;
}

a{
    text-decoration:none;
    color:inherit;
}

.container{
    width:min(1180px,92%);
    margin:0 auto;
}

/* ================= HEADER ================= */

.site-header{
    position:sticky;
    top:0;
    z-index:1000;
    background:rgba(255,255,255,.97);
    border-bottom:1px solid var(--line);
    backdrop-filter:blur(12px);
}

.nav-container{
    height:80px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.company-logo{
    width:195px;
    display:block;
}

.main-navigation{
    display:flex;
    align-items:center;
    gap:5px;
}

.main-navigation a{
    padding:10px 14px;
    border-radius:6px;
    color:#45586b;
    font-size:12px;
    font-weight:700;
    transition:.25s;
}

.main-navigation a:hover,
.main-navigation a.active{
    color:var(--blue);
    background:var(--blue-light);
}

.mobile-menu-btn{
    display:none;
    border:0;
    background:none;
    cursor:pointer;
}

.mobile-menu-btn span{
    display:block;
    width:27px;
    height:2px;
    margin:5px;
    background:var(--navy);
}

/* ================= BANNER ================= */

.inner-banner{
    position:relative;
    overflow:hidden;
    padding:90px 0;
    color:#fff;
    background:
        radial-gradient(circle at 80% 15%,rgba(65,160,215,.32),transparent 30%),
        linear-gradient(120deg,#06172d,#0d3156 60%,#155b84);
}

.banner-overlay{
    position:absolute;
    width:450px;
    height:450px;
    right:-220px;
    bottom:-280px;
    border:1px solid rgba(255,255,255,.12);
    border-radius:50%;
    box-shadow:
        0 0 0 55px rgba(255,255,255,.025),
        0 0 0 110px rgba(255,255,255,.015);
}

.banner-content{
    position:relative;
    z-index:2;
}

.banner-small-title{
    color:#9ed1ef;
    font-size:10px;
    font-weight:900;
    letter-spacing:.2em;
}

.banner-content h1{
    margin-top:10px;
    font:800 clamp(42px,6vw,68px)/1.05 Manrope,sans-serif;
    letter-spacing:-.05em;
}

.banner-content p{
    max-width:780px;
    margin-top:16px;
    color:#c7d9e7;
    font-size:16px;
}

.banner-tags{
    display:flex;
    flex-wrap:wrap;
    gap:9px;
    margin-top:24px;
}

.banner-tags span{
    padding:8px 13px;
    border:1px solid rgba(255,255,255,.18);
    border-radius:50px;
    background:rgba(255,255,255,.07);
    font-size:10px;
    font-weight:700;
}

/* ================= YEAR NAVIGATION ================= */

.year-navigation{
    position:sticky;
    top:80px;
    z-index:900;
    background:rgba(255,255,255,.97);
    border-bottom:1px solid var(--line);
    backdrop-filter:blur(12px);
}

.year-navigation-inner{
    min-height:61px;
    display:flex;
    align-items:center;
    gap:18px;
}

.year-navigation-title{
    flex:0 0 auto;
    font-size:10px;
    font-weight:900;
    letter-spacing:.05em;
}

.year-navigation-list{
    display:flex;
    gap:6px;
    overflow-x:auto;
    scrollbar-width:none;
    padding:8px 0;
}

.year-navigation-list::-webkit-scrollbar{
    display:none;
}

.year-navigation-list a{
    flex:0 0 auto;
    min-width:64px;
    padding:7px 8px;
    border:1px solid var(--line);
    border-radius:5px;
    color:var(--muted);
    text-align:center;
    font-size:10px;
    font-weight:900;
    transition:.2s;
}

.year-navigation-list a:hover,
.year-navigation-list a.active{
    color:#fff;
    background:var(--blue);
    border-color:var(--blue);
}

/* ================= MAIN ================= */

.financial-section{
    padding:55px 0 85px;
    background:var(--bg);
}

.section-heading{
    margin-bottom:25px;
}

.section-heading > span{
    color:var(--blue);
    font-size:10px;
    font-weight:900;
    letter-spacing:.18em;
}

.section-heading h2{
    margin-top:4px;
    font:800 30px/1.2 Manrope,sans-serif;
    letter-spacing:-.03em;
}

.section-heading p{
    margin-top:8px;
    color:var(--muted);
    font-size:12px;
}

/* ================= YEAR ROW ================= */

/*
   ONE YEAR = ONE LINE
   Four quarters stay horizontally aligned.
*/

.financial-year{
    display:grid;
    grid-template-columns:125px minmax(0,1fr);
    margin-bottom:12px;
    overflow:hidden;
    background:#fff;
    border:1px solid var(--line);
    border-radius:11px;
    transition:.25s;
}

.financial-year:hover{
    transform:translateY(-2px);
    border-color:#b9cfdf;
    box-shadow:var(--shadow);
}

.financial-year-title{
    min-height:125px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    color:#fff;
    background:linear-gradient(145deg,var(--navy),var(--navy2));
}

.financial-year-title small{
    color:#9ecae5;
    font-size:8px;
    font-weight:900;
    letter-spacing:.18em;
}

.financial-year-title strong{
    margin-top:5px;
    font:800 27px/1.1 Manrope,sans-serif;
}

.quarters{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    min-width:0;
}

.quarter-card{
    min-width:0;
    padding:17px 14px 17px 18px;
    border-right:1px solid #e6ebef;
}

.quarter-card:last-child{
    border-right:0;
}

.quarter-heading{
    display:flex;
    align-items:center;
    gap:9px;
}

.quarter-number{
    width:37px;
    height:37px;
    flex:0 0 37px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:var(--blue);
    background:var(--blue-light);
    font-size:9px;
    font-weight:900;
}

.quarter-heading strong{
    display:block;
    font:700 13px/1.25 Manrope,sans-serif;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.quarter-heading small{
    display:block;
    margin-top:2px;
    color:var(--muted);
    font-size:10px;
}

.pdf-buttons{
    display:flex;
    gap:6px;
    margin-top:15px;
}

.pdf-btn{
    min-height:32px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:5px;
    padding:0 9px;
    border-radius:5px;
    font-size:8px;
    font-weight:900;
    white-space:nowrap;
    transition:.2s;
}

.pdf-btn span{
    padding:1px 2px;
    border:1px solid currentColor;
    border-radius:2px;
    font-size:7px;
}

.notice-btn{
    color:var(--blue);
    background:var(--blue-light);
    border:1px solid #cfe0ec;
}

.outcome-btn{
    color:#fff;
    background:var(--navy);
}

.notice-btn:hover,
.outcome-btn:hover{
    color:#fff;
    background:var(--blue);
    border-color:var(--blue);
    transform:translateY(-1px);
}

.archive-note{
    margin-top:20px;
    padding:14px 17px;
    color:var(--muted);
    background:#fff;
    border:1px solid var(--line);
    border-left:3px solid var(--blue);
    border-radius:5px;
    font-size:10px;
}

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

.site-footer{
    color:#a9bacb;
    background:#051529;
}

.footer-top{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:30px;
    padding:50px 0;
    border-bottom:1px solid #1a3048;
}

.footer-logo{
    width:190px;
}

.footer-company p{
    margin-top:10px;
    font-size:10px;
}

.footer-links{
    display:flex;
    flex-wrap:wrap;
    gap:22px;
    font-size:11px;
}

.footer-links a:hover{
    color:#fff;
}

.footer-bottom{
    min-height:60px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    font-size:10px;
}

.footer-bottom a:hover{
    color:#fff;
}

/* ================= BACK TO TOP ================= */

.back-to-top{
    position:fixed;
    right:20px;
    bottom:20px;
    width:43px;
    height:43px;
    border:0;
    border-radius:50%;
    color:#fff;
    background:var(--navy);
    cursor:pointer;
    opacity:0;
    visibility:hidden;
    transition:.25s;
    z-index:1000;
}

.back-to-top.show{
    opacity:1;
    visibility:visible;
}

/* ================= TABLET ================= */

@media(max-width:950px){

    .mobile-menu-btn{
        display:block;
    }

    .main-navigation{
        display:none;
        position:absolute;
        top:80px;
        left:0;
        right:0;
        padding:10px 4%;
        flex-direction:column;
        align-items:stretch;
        background:#fff;
        border-bottom:1px solid var(--line);
        box-shadow:0 15px 30px rgba(0,0,0,.08);
    }

    .main-navigation.open{
        display:flex;
    }

    .financial-year{
        grid-template-columns:95px minmax(0,1fr);
    }

    .quarters{
        overflow-x:auto;
        grid-template-columns:repeat(4,195px);
        scrollbar-width:thin;
    }

}

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

@media(max-width:600px){

    .company-logo{
        width:165px;
    }

    .nav-container{
        height:72px;
    }

    .main-navigation{
        top:72px;
    }

    .year-navigation{
        top:72px;
    }

    .inner-banner{
        padding:65px 0;
    }

    .banner-content h1{
        font-size:42px;
    }

    .financial-section{
        padding:40px 0 65px;
    }

    .financial-year{
        grid-template-columns:1fr;
    }

    .financial-year-title{
        min-height:64px;
        flex-direction:row;
        justify-content:flex-start;
        gap:9px;
        padding:0 18px;
    }

    .financial-year-title strong{
        font-size:22px;
    }

    .quarters{
        grid-template-columns:repeat(4,175px);
    }

    .footer-top{
        display:block;
    }

    .footer-links{
        margin-top:25px;
    }

    .footer-bottom{
        display:block;
        padding:18px 0;
    }

    .footer-bottom a{
        display:block;
        margin-top:8px;
    }
}
