:root {
    --background: #1B1B1B;
    --lines: rgb(45, 45, 45);
    --secondary: #5092d9;
}

* {
    padding: 0;
    margin: 0;
    color: white;
    font-family: inter;
}

body {
    background: var(--background);
    height: 100vh;
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
}

.blob1, .blob2{
    position: absolute;
    z-index: -1;
    top: 0;
    left: -40%;
    opacity: 0.5;
    filter: brightness(0) saturate(100%) invert(19%) sepia(26%) saturate(884%) hue-rotate(91deg) brightness(92%) contrast(87%);
}

.grid{
    position: absolute;
    z-index: -2;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0.1;
}

.blob2{
    left: 80%;
}

nav{
    height: 8vh;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    display: flex;
    justify-content: space-between;
}

.brandName, .navItems, .getStarted{
    width: 33%;
    display: flex;
    align-items: center;
}

.brandName{
    justify-content: flex-end;
    font-size: 1.5rem;
}

.brandName img{
    height: 50%;
    margin-right: 0.5vw;
    width: auto;
    border-radius: 5px;
}

.navItems{
    justify-content: center;
}

.navItem{
    position: relative;
    cursor: pointer;
    text-decoration: none;
}

.navItem::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    transition: all 150ms ease-out;
    height: 1px;
    border-radius: 100px;
    background: var(--secondary);
}

.navItem:hover::after{
    width: 100%;
}

.navItem:nth-child(2){
    margin: 0 1vw;
}

.getStarted{
    font-size: 1rem;
}

.getStartedBox{
    background: linear-gradient(135deg, #21422E, #407E56);
    padding: 1.25vh 1.25vw;
    border-radius: 100px;
    cursor: pointer;
}

main{
    width: 100vw;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    padding-top: 17.5vh;
}

.title{
    font-size: 5vw;
    font-weight: 600;
    margin-bottom: 5vh;
}

.tagline{
    width: 53vw;
    color: rgb(190, 190, 190);
    margin-bottom: 10vh;
}

.features{
    width: 100vw;
    height: max-content;
    margin-top: 10vh;
    background: rgb(8, 8, 8);
    padding: 10vh 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.headingBox{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.headingTag{
    color: #407E56;
    background: var(--lines);
    padding: 1.25vh 1.25vw;
    border-radius: 100vw;
    margin-bottom: 2vh;
}

.headingTitle{
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 5vh;
}

.featuresBox{
    width: 75vw;
    height: max-content;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.feature{
    display: flex;
    width: 49%;
    height: 10vh;
    margin-bottom: 2vh;
}

.featureIcon{
    height: 100%;
    aspect-ratio: 1.5 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
}

.featureIcon > .bi{
    color: #407E56;
}

.featureDesc{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 1vh 0;
}

.featureHeading{
    font-size: 1.25rem;
    font-weight: 500;
}

.featureTagline{
    color: rgb(175, 175, 175);
}

footer{
    width: 100vw;
    height: 15vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(8, 8, 8);
    text-align: center;
    line-height: 3vh;
    position: relative;
}

footer::after{
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: var(--lines);
}



/* WHO Report Container */
.who-report-container {
    width: 100%;
    max-width: 900px;
    background: rgba(18, 18, 18, 0.95); /* Dark background matching your site */
    border: 1px solid #333;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    margin: 0 auto; /* Center it */
    position: relative;
}

/* Header Section */
.report-header {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    padding: 30px;
    border-bottom: 1px solid #333;
}

.who-badge {
    display: inline-block;
    background: #007bff; /* WHO Blue */
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.report-header h3 {
    margin: 0;
    font-size: 1.8rem;
    color: #fff;
    font-weight: 600;
}

.report-header p {
    margin: 8px 0 0 0;
    color: #888;
    font-weight: 300;
}

/* Body Section */
.report-body {
    padding: 30px;
}

.alert-box {
    background: rgba(220, 53, 69, 0.15); /* Red tint */
    border-left: 4px solid #dc3545;
    color: #ff8ca3;
    padding: 15px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

/* Stats Grid */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-item {
    background: #1e1e1e;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.stat-num {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(90deg, #fff, #aaa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.stat-label {
    color: #666;
    font-size: 0.85rem;
}

/* Simple CSS Chart */
.chart-section {
    margin-top: 20px;
}

.chart-label {
    color: #888;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.css-chart {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    height: 150px;
    border-bottom: 1px solid #444;
    padding-bottom: 10px;
}

.chart-bar {
    flex: 1;
    background: #333;
    height: var(--h); /* Variable height */
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: height 1s ease;
}

.chart-bar.alert {
    background: linear-gradient(180deg, #ff6a6a, #dc3545);
}

.chart-bar span {
    position: absolute;
    bottom: -25px;
    width: 100%;
    text-align: center;
    font-size: 0.75rem;
    color: #666;
}

/* Footer */
.report-footer {
    background: #111;
    padding: 15px 30px;
    font-size: 0.75rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-top: 1px solid #222;
}

iframe.dna{
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    /* background: red; */
    transform: rotate(45deg) translateX(25%) translateY(-50%) scale(1.1);
}

.preview{
    width: 75vw;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.preview img{
    width: 100%;
    height: auto;
}
