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

body{
    font-family:Arial, Helvetica, sans-serif;
    color:#12233f;
    background:#fff;
}

header{
    width:1200px;
    margin:auto;
    padding:25px 0;
}

.logo{
    height:30px;
}

.hero{
    background:#f5fbff;
    border-top:1px solid #e4edf5;
    border-bottom:1px solid #e4edf5;
    width:100%;
    padding:40px 0;

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

    flex-wrap:wrap;
}

.hero-text{
    width:500px;
}

.small-title{
    font-size:15px;
    font-weight:bold;
    margin-bottom:20px;
}

.hero-text h1{
    font-size:48px;
    line-height:1.2;
    margin-bottom:20px;
}

.hero-text span{
    display:block;
    color:#2b54a5;
}

.hero-image{
    width: 655px;
    aspect-ratio: 20 / 7;
    border-radius: 20px;
    /* overflow: hidden; */
    /* box-shadow: 0 10px 30px rgba(0, 47, 111, 0.12); */
}



.hero-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position:55% center;
}

.description{
    color:#66778d;
    line-height:1.6;
    margin-bottom:25px;
}

/* .status-container{
    width:100%;
    display:flex;
    justify-content:center;
    margin-top:30px;
}
    
.status{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:10px 18px;
    border-radius:8px;

    border:1px solid #8ddcb3;
    background:#edfff7;

    color:#00875a;
    font-weight:600;
    font-size:13px;
} */

.green-dot{
    width:8px;
    height:8px;
    border-radius:50%;
    background:#00b56c;
    animation:pulse 1.2s infinite;
}

.hero-image img{
    width:650px;
    height: 300px;
    border-radius:18px;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
}

.cards{
    width:1200px;
    margin:40px auto;

    display:flex;
    gap:50px;
}

.card{
    flex:1;

    border:1px solid #dde6ef;
    border-radius:14px;

    display:flex;
    gap:20px;

    padding:25px;

    box-shadow:0 3px 8px rgba(0,0,0,.03);
}

.icon{
    width:60px;
    height:55px;

    border-radius:12px;

    background:#eef4ff;

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

.icon img{
    width:30px;
}

.purple{
    width:70px;
    height:50px;
    background:#EEF4FF;
}

.card-content h2{
    margin-bottom:10px;
    font-size:24px;
}

.card-content p{
    color:#6b7b8d;
    line-height:1.5;
    margin-bottom:20px;
}

.card-content a{
    color:#1668d3;
    text-decoration:none;
    font-weight:bold;
}

.card:last-child a{
    color:#1668d3;
}
/* 
.tooltip {
  position: relative;
  border-bottom: 1px dotted #555;
  cursor: help;
  color: #72b8ff;
  font-weight: 600;
}

.tooltip .tooltip-text {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  text-align: left;
  padding: 8px 12px;
  border-radius: 6px;
  width: 240px;
  font-size: 11px;
  font-weight: normal;
  line-height: 1.4;
  z-index: 10;
  transition: opacity 0.2s ease;
}

.tooltip .tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
} */
/* Help link */



.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
    color: #2563eb;
    font-weight: 600;
    border-bottom: 1px dotted #94a3b8;
}

/* Tooltip box — genie reveal, smooth both ways */
.tooltip .tooltip-text {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: calc(100% + 14px);
    left: 0;
    transform-origin: bottom left;

    width: max-content;
    max-width: 340px;

    transform: scale(0.35, 0.15) translateY(14px);

    background: rgba(30, 30, 30, 0.45);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    backdrop-filter: blur(16px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.18);

    color: #f5f5f7;
    padding: 20px 24px;
    border-radius: 22px;
    text-align: left;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;

    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);

    /* Key fix: delay visibility so opacity/transform finish first on the way out */
    transition:
        opacity .35s ease,
        transform .45s cubic-bezier(.34, 1.4, .4, 1),
        visibility 0s linear .45s;

    z-index: 1000;
}

.tooltip .tooltip-text a {
    color: #4d9fff;
    font-weight: 600;
    text-decoration: none;
}
.tooltip .tooltip-text a:hover {
    text-decoration: underline;
}

.tooltip .tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 24px;
    border-width: 10px;
    border-style: solid;
    border-color: rgba(30, 30, 30, 0.45) transparent transparent transparent;
}

/* Show tooltip — genie unfurl, visibility switches immediately (delay only applies going hidden) */
.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
    transform: scale(1, 1) translateY(0);
    transition:
        opacity .35s ease,
        transform .45s cubic-bezier(.34, 1.4, .4, 1),
        visibility 0s linear 0s;
}

footer{
    margin-top:80px;
    border-top:1px solid #e3ebf3;
    text-align:center;
    padding:30px;
    color:#8091a6;
    font-size:13px;
}

.status-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

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

    padding: 10px 18px;
    border-radius: 8px;

    border: 1px solid #8ddcb3;
    background: #edfff7;

    color: #00875a;
    font-weight: 600;
    font-size: 13px;
}

/* Green online indicator */

.green-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #00b875;
    flex-shrink: 0;
    animation: statusBlink 1.5s infinite;
}

/* Offline styling — position and size remain unchanged */

.status.offline {
    border-color: #f1a09a;
    background: #fff1f0;
    color: #d92d20;
}

.status.offline .green-dot {
    background-color: #d92d20;
}

@keyframes statusBlink {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.25;
    }
}

@media(max-width:1000px){

.hero{
    flex-direction:column;
}

.cards{
    flex-direction:column;
    width:90%;
}

header{
    width:90%;
}

.hero-text{
    width:90%;
}

.hero-image img{
    width:100%;
}

}

@keyframes pulse{
    0%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(0,181,108,.7);
    }

    70%{
        transform:scale(1.2);
        box-shadow:0 0 0 8px rgba(0,181,108,0);
    }

    100%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(0,181,108,0);
    }
}