/* HERO */
.hero {
    min-height: auto;
    background: linear-gradient(180deg, #FF8E55 0%, #3901AE 100%);
    padding: 180px 5% 80px;
    position: relative;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .35
}

.orb1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #3901ae, transparent);
    top: -100px;
    right: -100px
}

.orb2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #3b48d4, transparent);
    bottom: -100px;
    left: -100px
}

.orb3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #fd99bb, transparent);
    top: 40%;
    right: 30%;
    opacity: .15
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%)
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #D9D9D91A;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 5px;
    padding: 6px 20px;
    font-size: 12px;
    line-height: 26px;
    color: #FFFFFF;
    font-weight: 400;
    margin-top: 21px;
    letter-spacing: .04em;
    height: 35px;
}

.hero-tag .poweredby {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.hero-tag img {
    border-right: 0.5px solid white;
    padding-right: 8px;
}

.hero-tag .lastchild {
    border-top: 0
}

.hero-tag .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00E477;
    animation: pulse 2s infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .5;
        transform: scale(1.3)
    }
}

.hero h1 {
    font-size: 48px;
    line-height: 54px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 32px;
    max-width: 484px;
}

.hero h1 em {
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(90deg, var(--pink), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -.01em
}

.hero h1 span {
    background: linear-gradient(90deg, var(--pink), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}


/* HERO TICKER */
.recent-claims {
    background: linear-gradient(0deg, #001D3F 4.64%, #3901AE 77.42%);
    height: 170px;
    padding: 0;
}

.hero-ticker {
    position: relative;
    z-index: 2;
    margin-top: 3rem;
    padding-top: 45px;
    border-top: 0;
}

.hero-ticker-label {
    font-size: 12px;
    line-height: 26px;
    font-weight: 500;
    letter-spacing: 20%;
    text-transform: uppercase;
    color: #6C91BD;
    margin-bottom: 1rem;
}

.ticker-track {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent)
}

.ticker-inner {
    display: flex;
    gap: 0;
    width: max-content;
    animation: ticker 22s linear infinite
}

.ticker-inner:hover {
    animation-play-state: paused
}

@keyframes ticker {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 2.5rem;
    white-space: nowrap;
    border-right: 1px solid #3924C1;
}

.ticker-avatar {
    width: 33px;
    height: 33px;
    border-radius: 50%;
    background: linear-gradient(150deg, rgba(40, 12, 129, 0.8) 31.45%, rgba(63, 61, 185, 0.8) 84.98%);
    border: 1px solid #3924C1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    line-height: 26px;
    font-weight: 700;
    flex-shrink: 0;
    color: #3B30C3;
}

.ticker-text {
    font-size: .82rem;
    color: #ffffff;
}

.ticker-text strong {
    color: #00E477;
    font-weight: bold;
}

.ticker-time {
    font-size: .72rem;
    color: rgba(255, 255, 255, .3);
    margin-left: 4px
}

.hero-sub {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 29px;
    max-width: 415px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange), #ff6b2b);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s;
    display: inline-flex;
    width: 178px;
    height: 48px;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 8px 32px rgba(255, 142, 85, .35)
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 142, 85, .45)
}

.btn-primary:active {
    transform: translateY(0)
}

.btn-secondary {
    background: #3B48D433;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 30px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s;
    width: 186px;
    height: 48px;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, .14)
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #FFFFFF;
    font-size: 12px;
    line-height: 26px;
    font-weight: 400;
}

.hero-trust-item svg {
    opacity: .7
}

/* HERO VISUAL */
.hero-visual {
    position: relative;
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center
}

.shield-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    opacity: .18;
    animation: shieldPulse 3s ease-in-out infinite
}

@keyframes shieldPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: .18
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: .25
    }
}

.shield-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 2px solid;
    transform: translate(-50%, -50%);
    animation: ringExpand 3s ease-out infinite
}

.ring1 {
    width: 280px;
    height: 280px;
    border-color: rgba(57, 1, 174, .4);
    animation-delay: 0s
}

.ring2 {
    width: 360px;
    height: 360px;
    border-color: rgba(59, 72, 212, .25);
    animation-delay: .8s
}

.ring3 {
    width: 440px;
    height: 440px;
    border-color: rgba(253, 153, 187, .15);
    animation-delay: 1.6s
}

@keyframes ringExpand {
    0% {
        transform: translate(-50%, -50%) scale(.8);
        opacity: 0
    }

    30% {
        opacity: 1
    }

    100% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0
    }
}

.shield-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 112px;
    height: 112px;
    border-radius: 50%;
    background: linear-gradient(150deg, rgba(40, 12, 129, 0.8) 31.45%, rgba(63, 61, 185, 0.8) 84.98%);
    backdrop-filter: blur(20px);
    border: 1px solid #5A48D2;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(57, 1, 174, .5);
    z-index: 3
}

.shield-core svg {
    width: 56px;
    height: 56px
}

.float-card {
    position: absolute;
    background: rgba(255, 255, 255, .09);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 12px 16px;
    z-index: 4;
    animation: float 4s ease-in-out infinite
}

.fc1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
    border: 1px solid #D36F69
}

.fc2 {
    top: 20%;
    right: 0%;
    animation-delay: 1s;
    border: 1px solid #D16D6B;
}

.fc3 {
    bottom: 20%;
    left: 0%;
    animation-delay: 2s;
    border: 1px solid #914087;
}

.fc4 {
    bottom: 15%;
    right: 5%;
    animation-delay: .5s;
    border: 1px solid #934185;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

.fc-label {
    font-size: 11px;
    line-height: 18px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 4px;
}

.fc-value {
    font-size: 15px;
    line-height: 18px;
    font-weight: 700;
    color: #fff;
}

.fc-sub {
    font-size: .72rem;
    color: rgba(255, 255, 255, .6);
    margin-top: 2px
}

.fc-alert {
    display: flex;
    align-items: center;
    gap: 8px
}

.fc-alert-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pink);
    flex-shrink: 0;
    animation: pulse 1.5s infinite
}

/* SECTION COMMONS */
section {
    padding: 90px 5%
}

.section-inner {
    max-width: 1010px;
    margin: 0 auto
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    line-height: 26px;
    font-weight: 500;
    letter-spacing: 20%;
    text-transform: uppercase;
    padding: 0 12px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.tag-blue {
    background: #E9EAFB;
    color: #3B30C3;
}

.tag-dark {
    background: #E9EAFB;
    color: #3B30C3;
}

.tag-pink {
    background: #fff0f5;
    color: #FD99BB;
}

.section-headline {
    font-size: 46px;
    line-height: 50px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #001D3F;
    max-width: 540px;
}

.section-sub {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    max-width: 540px;
    color: #001D3F;
}

.coverage-hero {
    background: #001D3F;
}

.coverage-hero .hero-inner {
    max-width: 1010px;
}

.coverage-hero .hero-tag {
    margin-top: 0;
    margin-bottom: 24px;
    font-size: 11px;
    line-height: 26px;
    font-weight: 500;
    letter-spacing: 20%;
    text-transform: uppercase;
    background: #D9D9D933;

}

/* Coverage Hero Visual Overrides */
.coverage-hero-visual {
    position: relative;
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.cov-connecting-line {
    position: absolute;
    top: 50%;
    left: -120%;
    right: 50%;
    border-top: 1px dashed rgba(60, 110, 255, 0.8);
    z-index: 1;
    transform: translateY(-50%);
    pointer-events: none;
}

.cov-connecting-line .crosshair {
    position: absolute;
    top: 50%;
    right: 180px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
}

.ch-border {
    position: absolute;
    inset: 0;
    border: 1px dashed rgba(60, 110, 255, 0.8);
}

.ch-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1px;
    background: rgba(60, 110, 255, 0.8);
    transform: translate(-50%, -50%);
}

.ch-center::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 10px;
    background: rgba(60, 110, 255, 0.8);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes ringPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(0.85);
        opacity: 0.1;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 0.3;
    }
}

.c-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 2px solid;
    transform: translate(-50%, -50%);
    background: transparent;
    opacity: 0.15;
    animation: ringPulse 5s ease-in-out infinite;
}

.cr-1 {
    width: 280px;
    height: 280px;
    border-color: #424785;
    animation-delay: 0s;
}

.cr-2 {
    width: 380px;
    height: 380px;
    border-color: #424785;
    animation-delay: 1.5s;
}

.cr-3 {
    width: 480px;
    height: 480px;
    border-color: #424785;
    animation-delay: 3s;
}

.cov-shield-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    pointer-events: none;
    animation: shieldGroupFloat 6s ease-in-out infinite;
}

@keyframes shieldGroupFloat {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-10px);
    }
}

.cs-main,
.cs-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    max-width: 360px;
}

.cs-main {
    z-index: 5;
    max-width: 222px;
}

.orbit-1 {
    z-index: 4;
}

.orbit-2 {
    z-index: 6;
}

@media(max-width:768px) {
    .cs-main {
        max-width: 175px;
    }

    .cs-orbit {
        max-width: 210px;
    }
}