html {
    font-family: "Inter", sans-serif;
}
body {
    background: linear-gradient(160deg,  rgba(46,48,70,1) 34%,rgba(0,165,153,1) 100%);
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    font-family: "Inter", sans-serif;
}

/*
h1 {font-size: 2.986rem;}
h2 {font-size: 2.488rem;}
h3 {font-size: 2.074rem;}
h4 {font-size: 1.728rem;}
h5 {font-size: 1.44rem;}
h6 {font-size: 1.2rem;}
*/

.bg-gradient-blue-transparent-bottom {
    background: linear-gradient(to bottom,  rgba(46,48,70,0.8) 0%,rgba(46,48,70,0) 100%);
}

.bg-gradient-green-transparent-bottom {
    background: linear-gradient(to bottom,  rgba(0,165,153,0.8) 0%,rgba(0,165,153,0) 100%);
}

.text-electric-teal-400 {
    color: #00a599;
}
.text-space-blue-400 {
    color: #2e3046;
}
.bg-space-blue-400 {
    background-color: #2e3046;
}
.bg-dot-grid {
    background: url(../images/dot-grid-white.webp) repeat left bottom;
    mix-blend-mode: overlay;
    background-attachment: fixed;
}
#home-intro-screenshot-dots {
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 50%), linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 20%);
    mask-composite: intersect;
}
#home-intro-screenshot-wrapper {
    background: url(../images/screenshot-subscribers.webp) no-repeat left bottom;
    background-size: cover;
}
.home-product-screenshot .bg-dot-grid {
    mask-image: 
        linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 30%),
        linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 30%),
        linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 30%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 30%);
    mask-composite: intersect;
}
.bg-dot-grid.dot-fade {
    mask-image: 
        linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 70%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 70%);
    mask-composite: intersect;
}
ul.list-icon-circle .list-icon {
    position: relative;
}
ul.list-icon-circle .list-icon svg {
    margin: 26px;
}
ul.list-icon-circle .list-icon:before,
ul.list-icon-circle .list-icon:after {
    content: '';
    position: absolute;
    background-color: #00a599;
    border-radius: 200px;
    width: 50px;
    height: 50px;
    top: 10px;
    left: 10px;
    z-index: -1;
    opacity: .8;
}
ul.list-icon-circle .list-icon:after {
    width: 70px;
    height: 70px;
    top: 0;
    left: 0;
    opacity: .3;
}

/* VERTICAL SCROLLER */
.scroller-item {
    height: 96px;
}

/* TESTIMONIALS */
.slider-testimonial {
    position: relative;
    min-height: 170px;
}
.slider-testimonial .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.slider-testimonial .slide.active {
    opacity: 1;
    position: relative;
}

#section-breachid-masthead {
    background: url(../images/breachid-masthead.webp) no-repeat right center;
    background-size: 40vw auto;
    padding-top: 8vw;
    padding-bottom: 8vw;
}

#breachid-intro-screenshot-wrapper {
    background: url(../images/breachid-masthead.webp) no-repeat left bottom;
    background-size: cover;
}

/* BREACHID RISKS */
#breachid-risks {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

#breachid-risks ul {
    background: url(../images/breachid-risk-curved-line.webp) no-repeat center center;
    background-size: contain;
}

#breachid-risks .risk-item {
    text-align: center;
    width: 170px;
    padding: 24px 0;
    position: relative;
}

#breachid-risks .list-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

#breachid-risks .list-icon:before {
    margin: 0 auto;
    top: 10px;
    left: 10px;
}

#breachid-risks .list-icon:after {
    top: -10px;
    left: -10px;
    transform: translate(14%, 14%); /* Adjusted to center from top:0 left:0 */
    animation: pulse-risk 1.2s infinite ease;
}

@keyframes pulse-risk {
    0% {
        transform: translate(14%, 14%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(14%, 14%) scale(1.2);
        opacity: 0;
    }
}

#breachid-risks .risk-item p {
    font-size: 18px;
    font-weight: bold;
}

#breachid-risks .right-section {
    text-align: right;
}

#breachid-risks .right-section h1 {
    font-size: 48px;
    line-height: 1.2;
}

#breachid-risks .right-section h1 span {
    color: #a0d1d1; /* Light teal for "EXPOSED" */
    font-size: 24px;
    display: block;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}
