/* ============================================================
   HOME PAGE 2026 — CSS
   12-col grid · 1440 max · 24 px gutter
   Fonts: Darker Grotesque, Onest, Inter
   Primary: #4D30FF
   ============================================================ */

/* ---------- base reset ---------- */
.home-2026.base-css {
    overflow-x: hidden;
    margin-top: 0 !important;
}
.home-2026 * { box-sizing: border-box; }
.home-2026 img { max-width: 100%; height: auto; display: block; }
.home-2026 a { text-decoration: none; }

/* ---------- container ---------- */
.home-2026 .hp-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 80px);
    width: 100%;
}

/* ---------- shared typography ---------- */
.home-2026 .hp-section-title {
    font-family: 'Darker Grotesque', sans-serif;
    font-weight: 400;
    font-size: 72px;
    line-height: 48px;
    color: #111;
    text-align: center;
    letter-spacing: -0.48px;
    margin: 0 0 12px;
}

.home-2026 .hp-section-sub {
    font-family: 'Darker Grotesque', sans-serif;
    font-weight: 500;
    font-size: 48px;
    color: #4D30FF;
    text-align: center;
    margin: 0;
}
.home-2026 .hp-section-sub a {
    color: #4D30FF;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ============ Buttons and CTAs ============ */


/* ============ HERO ============ */
.has-promo .home-2026 .hp-hero{
    min-height: 95vh;
}
.home-2026 .hp-hero {
    position: relative;
    /* min-height: 600px; */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    background: #0a0a0a url('/wp-content/uploads/CyberAGI-graphic-banner.png') no-repeat center bottom / cover;
}
.home-2026 .hp-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 100px 20px 180px;
}
.home-2026 .hp-hero__title {
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    font-size: clamp(44px, 10vw, 128px);
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.15;
    background: linear-gradient(90deg, #FFF 0%, rgba(255, 255, 255, 0.60) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -5px;
}
.home-2026 .hp-hero__subtitle {
    font-family: 'Onest', sans-serif;
    font-size: clamp(18px, 2vw, 32px);
    color: rgba(255,255,255,.65);
    margin: 0;
    font-style: normal;
    font-weight: 400;
    line-height: 39px; /* 121.875% */
    letter-spacing: -1px;
}
.home-2026 .hp-hero__glow {
    position: absolute;
    bottom: -47px;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 94px;
    background: linear-gradient(to bottom, #d729f8, rgba(194,122,255,.3) 50%, #efc8fe);
    filter: blur(100px);
    z-index: 3;
    pointer-events: none;
}

/* ============ PRODUCT CARDS ============ */
.home-2026 .hp-products {
    padding: 80px 0 0;
    background: #fff;
    position: relative;
    z-index: 1;
}
.home-2026 .hp-products__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.home-2026 .hp-product-card {
    background: #1a1a1a;
    border-radius: 24px;
    padding: 27px 23px;
    display: flex;
    flex-direction: column;
    min-height: 298px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0), 0 19px 51px rgba(0,0,0,.4), 0 0 0 1px rgba(139,92,246,.2);
    text-decoration: none;
    color: inherit;
    transition: transform 150ms ease-in;
}
.home-2026 .hp-product-card:hover {
    transform: scale(1.01);
}
.home-2026 .hp-product-card:active {
    transform: scale(0.96);
}
.home-2026 .hp-product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10,12,24,.8), transparent);
    pointer-events: none;
}
.home-2026 .hp-product-card__badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    background: #4D30FF;
    border: .96px solid #4D30FF;
    border-radius: 9999px;
    padding: 9px 16px;
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #fff;
    letter-spacing: .3px;
    line-height: 1.22;
    margin-bottom: auto;
}
.home-2026 .hp-product-card__body {
    position: relative;
    z-index: 1;
    margin-top: auto;
}
.home-2026 .hp-product-card__title {
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    font-size: 28px;
    line-height: 30px;
    color: #f5f7fa;
    margin: 0 0 12px;
}
.home-2026 .hp-product-card__sub {
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
    color: rgba(255,255,255,.6);
    margin: 0;
}
.home-2026 .hp-product-card__cta {
    position: relative;
    z-index: 1;
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    transition: gap .2s;
    align-self: flex-start;
}
.home-2026 .hp-product-card__cta:hover{
    color: #B8A8FF !important;
}
.home-2026 .hp-product-card__cta .hp-arrow-icon {
    flex-shrink: 0;
    transition: transform .2s;
}
.home-2026 .hp-product-card__cta:hover .hp-arrow-icon {
    transform: translateX(4px);
}
.home-2026 .hp-product-card__cta:active{
    color: #B8A8FF !important;
}
.home-2026 .hp-product-card__cta:active .hp-arrow-icon{
    transform: translateX(3px);
}
.home-2026 .hp-product-card__cta:focus-visible{
    color: #ffffff !important;
    padding: 6px 4px !important;
    border-radius: 4px !important;
    outline: 1.5px solid #8B7BFF !important;
    align-self: flex-start !important;
}
/* ---------- Logo bar ---------- */
.home-2026 .hp-logo-bar {
    text-align: center;
    margin-top: 120px;
}
.home-2026 .hp-logo-bar__heading {
    font-family: 'Darker Grotesque', sans-serif;
    font-weight: 500;
    font-size: 48px;
    color: #111;
    margin: 0;
    line-height: 1.4;
}
.home-2026 .hp-logo-bar .logoCarouselSec div.container{
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}
.home-2026 .hp-logo-bar .logoCarouselSec div.container .button{
    display: none !important;
}
.home-2026 .hp-logo-bar .logoCarouselSec{
    margin-bottom: 20px !important;
}
.home-2026 .hp-logo-bar .logoCarouselSec .splide__slide.logo-slide img{
    max-height: 120px !important;
}
/* ============ PLATFORM PREVIEW ============ */
.home-2026 .hp-platform {
    padding: 90px 0px 140px;
    background: #fff;
    position: relative;
    overflow: hidden;
}
.home-2026 .hp-platform::before {
    content: '';
    position: absolute;
    width: 900px;
    height: 900px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(77,48,255,.25) 0%, rgba(77,48,255,.08) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.home-2026 .hp-platform .hp-container {
    position: relative;
    z-index: 1;
}
.home-2026 .hp-platform__box {
    background: #1b1b1b;
    border: 2px solid rgba(77,48,255,.6);
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 0 70px 10px #4D30FF;
}
.home-2026 .hp-platform__tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1.44px solid rgba(255,255,255,.04);
}
.home-2026 .hp-platform__tab {
    padding: 30px;
    cursor: pointer;
    background: #111827;
    transition: background .3s;
    position: relative;
}
.home-2026 .hp-platform__tab:hover{
    background: #0F223F;
}
.home-2026 .hp-platform__tab:first-child {
    border-top-left-radius: 35px;
}
.home-2026 .hp-platform__tab:last-child {
    border-top-right-radius: 35px;
}
.home-2026 .hp-platform__tab.active {
    background: linear-gradient(162deg, #5E4DFF 0%, #3F2DCC 100%);
    box-shadow: 0 0 86px rgba(77,48,255,.25);
}
.home-2026 .hp-platform__tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3.5px;
    background: rgba(255,255,255,.3);
}
.home-2026 .hp-platform__tab-name {
    display: block;
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    font-size: 28px;
    color: rgba(245,247,250,.85);
    margin-bottom: 12px;
    letter-spacing: .05px;
    line-height: 1.34;
}
.home-2026 .hp-platform__tab.active .hp-platform__tab-name {
    color: #f5f7fa;
}
.home-2026 .hp-platform__tab-desc {
    display: block;
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-size: clamp(13px, 1.3vw, 18px);
    color: rgba(255,255,255,.6);
    line-height: 1.44;
    letter-spacing: .09px;
}
.home-2026 .hp-platform__tab.active .hp-platform__tab-desc {
    color: rgba(255,255,255,.7);
}
.home-2026 .hp-platform__panels {
    padding: 32px;
}
.home-2026 .hp-platform__panel {
    display: none;
}
.home-2026 .hp-platform__panel.active {
    display: block;
}
.home-2026 .hp-platform__panel video {
    width: 100%;
    border-radius: 12px;
    display: block;
}

/* ============ PLATFORM PREVIEW — MOBILE CAROUSEL ============ */
.home-2026 .hp-platform-mobile {
    display: none;
    padding: 60px 0 60px;
    background: #fff;
    overflow: hidden;
}
.home-2026 .hp-platform-mobile .splide__track {
    overflow: visible;
}
.home-2026 .hp-pm-card {
    border-radius: 28px;
    overflow: hidden;
    background: #1b1b1b;
    box-shadow: 0 4px 60px 0 #4d30ff;
}
.home-2026 .hp-pm-card__header {
    padding: 12px 24px;
    border-radius: 28px 28px 0 0;
    background: linear-gradient(164deg, #5E4DFF 0%, #3F2DCC 100%);
}
.home-2026 .hp-pm-card__title {
    font-family: 'Onest', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: -0.4px;
    color: #fff;
    margin-bottom: 5px;
}
.home-2026 .hp-pm-card__desc {
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: normal;
    letter-spacing: 0.05px;
    color: rgba(255,255,255,.75);
    margin-bottom: 0;
}
.home-2026 .hp-pm-card__body {
    background: #111827;
    padding: 12px;
}
.home-2026 .hp-pm-card__body video {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 6px;
    aspect-ratio: 16 / 9;
}

/* ============ TEST DRIVE CTA ============ */
.home-2026 .hp-cta {
    padding: 60px 0;
    background: linear-gradient(84deg, #fff 0%, rgba(77,48,255,.8) 36%, rgba(77,48,255,.9) 50%, rgba(77,48,255,.8) 65%, #fff 100%);
    text-align: center;
}
.home-2026 .hp-cta__title {
    font-family: 'Onest', sans-serif;
    font-weight: 300;
    font-size: 48px;
    color: #fff;
    margin: 0 0 36px;
    line-height: 1.25;
}
.home-2026 .hp-btn-white {
    display: inline-block;
    font-family: 'Darker Grotesque', sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 16px;
    padding: 14px 24px;
    line-height: 1.25;
    transition: background .2s, color .2s;
}
.home-2026 .hp-btn-white:hover {
    border: 2px solid #FFF;
    background: rgba(255, 255, 255, 0.10) !important;
}
.home-2026 .hp-btn-white:active {
    border: 2px solid rgba(255, 255, 255, 0.90);
    background: rgba(255, 255, 255, 0.16) !important;
    box-shadow: none;
    transform: scale(0.96);
}

/* ============ MEASURABLE IMPACT ============ */
.home-2026 .hp-impact {
    padding: 100px 0;
    background: transparent;
}
.home-2026 .hp-impact__header {
    text-align: center;
    margin-bottom: 60px;
}
.home-2026 .hp-impact__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* impact card */
.home-2026 .hp-impact-card {
    background: #fff;
    border: 1.25px solid rgba(0,0,0,.06);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.04);
}
.home-2026 .hp-impact-card__header {
    background: #fafafa;
    border-bottom: 1.25px solid rgba(0,0,0,.05);
    padding: 40px 45px;
}
.home-2026 .hp-impact-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(77,48,255,.07);
    border-radius: 20px;
    padding: 9px 16px;
    font-family: 'Onest', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #4D30FF;
    text-transform: uppercase;
    letter-spacing: .7px;
    margin-bottom: 20px;
}
.home-2026 .hp-impact-card__title {
    font-family: 'Onest', sans-serif;
    font-weight: 600;
    font-size: clamp(22px, 2vw, 28px);
    color: #111;
    margin: 0;
    line-height: 1.18;
    letter-spacing: -.375px;
}
.home-2026 .hp-impact-card__stats {
    padding: 10px 0;
}
.home-2026 .hp-impact-stat {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px 16px;
    border-bottom: 1.25px solid rgba(0,0,0,.04);
}
.home-2026 .hp-impact-stat:last-child {
    border-bottom: none;
}
.home-2026 .hp-impact-stat__num {
    font-family: 'Onest', sans-serif;
    font-weight: 700;
    font-size: 35px;
    color: #111;
    letter-spacing: -1.25px;
    min-width: 100px;
    flex-shrink: 0;
    text-align: right;
}
.home-2026 .hp-impact-stat__text {
    font-family: 'Onest', sans-serif;
    font-weight: 400;
    font-size: clamp(15px, 1.3vw, 18px);
    color: #6b7280;
    line-height: 1.4;
    letter-spacing: -.125px;
}

/* ============ INTEGRATIONS ============ */
.home-2026 .hp-integrations {
    padding: 60px 0 60px;
    background: #fff;
}
.home-2026 .hp-integrations .hp-section-title {
    font-family: 'Darker Grotesque', sans-serif;
    font-weight: 400;
    font-size: 72px;
    line-height: 80px;
    letter-spacing: -1.6px;
    color: #181c22;
    text-align: center;
}
.home-2026 .hp-integrations .hp-section-sub {
    font-family: 'Darker Grotesque', sans-serif;
    font-weight: 500;
    font-size: 48px;
    line-height: 48px;
    letter-spacing: -0.96px;
    color: #4d30ff;
    margin-top: 12px;
}

/* integration rails (logo-carousel overrides) */
.home-2026 .hp-int-rails {
    margin-top: 60px;
}
.home-2026 .hp-int-rail .logoCarouselSec {
    margin-bottom: 0;
}
.home-2026 .hp-int-rail .logoCarouselSec div.container {
    padding-top: 0;
    padding-bottom: 0;
}
.home-2026 .hp-int-rail .carousel-heading {
    display: none;
}
.home-2026 .hp-int-rail .logo-carousel-section {
    padding: 0;
}

/* forward & reverse rail shared */
.home-2026 .hp-int-rail .button {
    display: none;
}
.home-2026 .hp-int-rail .splide__slide {
    margin: 7.5px !important;
}
.home-2026 .hp-int-rail .logo-slide {
    display: flex;
    width: 70px;
    height: 70px;
    padding: 16px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.60) 0%, rgba(255, 255, 255, 0.30) 100%), rgba(255, 255, 255, 0.80);
}
.home-2026 .hp-int-rail .logo-slide a,
.home-2026 .hp-int-rail .logo-slide img {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
}

/* reverse rail */
.home-2026 .hp-int-rail--reverse {
    margin-top: 0;
}

/* integrations CTA */
.home-2026 .hp-integrations__cta {
    text-align: center;
    margin-top: 48px;
}

/* outline button */
.home-2026 .hp-btn-outline {
    display: inline-block;
    font-family: 'Darker Grotesque', sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #050209;
    border: 2px solid #050209;
    border-radius: 16px;
    padding: 14px 18px 18px;
    line-height: 30px;
    letter-spacing: 0;
    transition: background .2s, color .2s;
}
.home-2026 .hp-btn-outline:hover {
    border: 2px solid #4D30FF !important;
    background: rgba(77, 48, 255, 0.02);
    box-shadow: none !important;
    color: #4D30FF !important;
}
.home-2026 .hp-btn-outline:active {
    border: 2px solid #2909F7;
    background: rgba(77, 48, 255, 0.02) !important;
    box-shadow: none !important;
    transform: scale(0.96);
}
.home-2026 .hp-btn-outline:focus-visible {
    color: #050209 !important;  
    border: 2px solid #050209 !important;
    background: rgba(255, 255, 255, 0.01) !important;
    box-shadow: 0 0 1px 3px rgba(77, 48, 255, 0.25) !important;
}

/* ============ ENTERPRISE AI TRUST ============ */
.home-2026 .hp-ai-trust {
    padding: 60px 0;
    background: #fff;
}
.home-2026 .hp-ai-trust .hp-section-title {
    margin-bottom: 88px;
}
.home-2026 .hp-ai-trust__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1068px;
    margin: 0 auto;
}
.home-2026 .hp-ai-trust__card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 56px 36px;
    box-shadow: 0 4px 20px rgba(0,0,0,.04);
}
.home-2026 .hp-ai-trust__num {
    display: block;
    font-family: 'Onest', sans-serif;
    font-weight: 700;
    font-size: clamp(48px, 5vw, 72px);
    color: #111;
    line-height: 1;
    letter-spacing: -1.5px;
}
.home-2026 .hp-ai-trust__divider {
    width: 60px;
    height: 2px;
    background: #4D30FF;
    opacity: .4;
    margin: 20px 0;
}
.home-2026 .hp-ai-trust__label {
    font-family: 'Onest', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #6b7280;
    line-height: 1.22;
    margin: 0;
    max-width: 220px;
}

.purple-glow-wrapper{
    background-image: url('/wp-content/uploads/purple-ellipse-bg-for-analysts-section.svg');
    background-position: right center;
    background-size: 70%;
    background-repeat: no-repeat;
}
/* ============ ENDORSED BY ANALYSTS ============ */
.home-2026 .hp-analysts {
    padding: 60px 0;
    background: transparent;
}
.home-2026 .hp-analysts .hp-section-title {
    text-align: center;
    margin-bottom: 88px;
}
.home-2026 .hp-analysts__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.home-2026 .hp-analyst-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 18px 18px -5.317px rgba(0, 0, 0, 0.10), 0 8px 12px -7.09px rgba(0, 0, 0, 0.10);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 150ms ease-in;
}
.home-2026 .hp-analyst-card:hover {
    transform: scale(1.01);
}
.home-2026 .hp-analyst-card:active {
    transform: scale(0.96);
}
.home-2026 .hp-analyst-card__inner {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.home-2026 .hp-analyst-card__logo {
    height: 24px;
    width: auto;
    object-fit: contain;
    margin-bottom: 24px;
    margin-right: auto;
}
.home-2026 .hp-analyst-card__chart {
    border: 1.4px solid #eaeaea;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 16px;
    aspect-ratio: 384/372;
    background: #fff;
}
.home-2026 .hp-analyst-card__chart img {
    width: 100%;
    height: 100%;
}
.home-2026 .hp-analyst-card__desc {
    font-family: 'Darker Grotesque', sans-serif;
    font-weight: 600;
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.42;
    color: #101828;
    margin: 0 0 24px;
}
.home-2026 .hp-link-arrow {
    font-family: 'Darker Grotesque', sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: #4D30FF;
    text-transform: uppercase;
    letter-spacing: .44px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap .2s;
    align-self: flex-start;
}
.home-2026 .hp-link-arrow:active .hp-arrow-icon{
    transform: translateX(3px);
}
.home-2026 .hp-link-arrow:focus-visible{
    border-radius: 4px;
    border: 1px solid #8B7BFF !important;
    padding: 4px 4px 6px 4px;
    align-self: flex-start !important;
}
.home-2026 .hp-link-arrow .hp-arrow-icon {
    flex-shrink: 0;
    transition: transform .2s;
    transform: translateY(2px);
}
.home-2026 .hp-link-arrow:hover .hp-arrow-icon {
    transform: translate(4px, 2px);
}

/* ============ CUSTOMER STORIES ============ */
.home-2026 .hp-stories {
    padding: 60px 0;
    background: transparent;
}
.home-2026 .hp-stories .hp-section-title {
    text-align: center;
    margin-bottom: 88px;
}
.home-2026 .hp-stories__row {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}
.home-2026 .hp-stories__row:last-of-type {
    margin-bottom: 0;
}
.home-2026 .hp-stories__row--top .hp-story-card:first-child { flex: 586; }
.home-2026 .hp-stories__row--top .hp-story-card:last-child  { flex: 830; }
.home-2026 .hp-stories__row--bottom .hp-story-card:first-child { flex: 707; }
.home-2026 .hp-stories__row--bottom .hp-story-card:last-child  { flex: 709; }
.home-2026 .hp-story-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 31px 27px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 260px;
    min-width: 0;
}
.home-2026 .hp-story-card__quote {
    font-family: 'Darker Grotesque', sans-serif;
    font-weight: 500;
    font-size: clamp(18px, 1.5vw, 22px);
    color: #1a1a1a;
    line-height: 1.55;
    margin: 0 0 auto;
}
.home-2026 .hp-story-card__footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 40px;
}
.home-2026 .hp-story-card__author {
    display: flex;
    flex-direction: column;
}
.home-2026 .hp-story-card__name {
    font-family: 'Darker Grotesque', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #1a1a1a;
    line-height: 1.4;
}
.home-2026 .hp-story-card__role {
    font-family: 'Darker Grotesque', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #434853;
    line-height: 1.4;
}
.home-2026 .hp-story-card__company {
    max-width: 165px;
    height: 48px;
    object-fit: contain;
}
.home-2026 .hp-stories__cta {
    text-align: center;
    margin-top: 56px;
}

/* ============ LATEST FROM SAFE ============ */
.home-2026 .hp-latest {
    padding: 60px 0;
    background: #fff;
}
.home-2026 .hp-latest .hp-section-title {
    text-align: center;
    margin-bottom: 88px;
}
.home-2026 .hp-latest__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.home-2026 .hp-latest-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12.5px 18.75px -3.75px rgba(0,0,0,.1), 0 5px 7.5px -5px rgba(0,0,0,.1);
    transition: transform 150ms ease-in;
    color: inherit;
}
.home-2026 .hp-latest-card:hover {
    transform: scale(1.01);
}
.home-2026 .hp-latest-card:active {
    transform: scale(0.96);
}
.home-2026 .hp-latest-card__img {
    overflow: hidden;
    position: relative;
}
.home-2026 .hp-latest-card__img img {
    object-fit: cover;
}
.home-2026 .hp-latest-card__badge_wrapper{
    margin-bottom: 20px;
}
.home-2026 .hp-latest-card__badge {
    background: #4D30FF;
    color: rgba(255,255,255,.8);
    font-family: 'Onest', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: .75px;
    text-transform: uppercase;
    padding: 9px 16px;
    border-radius: 20px;
    display: inline-block;
}
.home-2026 .hp-latest-card__body {
    padding: 35px 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.home-2026 .hp-latest-card__title {
    font-family: 'Darker Grotesque', sans-serif;
    font-weight: 600;
    font-size: clamp(22px, 2vw, 28px);
    color: #101828;
    line-height: 1.22;
    letter-spacing: -.275px;
    margin: 0 0 24px;
}
.home-2026 .hp-latest-card__excerpt {
    font-family: 'Onest', sans-serif;
    font-weight: 300;
    font-size: 18px;
    color: #4a5565;
    line-height: 1.7;
    letter-spacing: -.19px;
    margin: 0 0 24px;
}
br.mobile-only{
    display: none !important;
}
br.tablet-only{
    display: none !important;
}
/* ============ RESPONSIVE ============ */

@media (min-width: 1920px){
    .has-promo .home-2026 .hp-hero{
        min-height: 800px;
    }
    .home-2026 .hp-hero{
        min-height: 800px;
    }
}

@media (max-width: 1280px) {
    .home-2026 .hp-product-card{
        justify-content: space-around !important;
    }
    .home-2026 .hp-product-card__badge{
        margin-bottom: 40px !important;
    }
    .home-2026 .hp-product-card__body{
        margin-top: 0 !important;
    }
    .home-2026 .hp-product-card__title{
        font-size: 18px !important;
        margin-bottom: 10px !important;
    }
    .home-2026 .hp-platform__tab-desc{
        font-size: 16px !important;
    }
    .home-2026 .hp-product-card__cta{
        font-size: 15px !important;
    }
    .home-2026 .hp-impact{
        padding: 60px 0 !important;
    }
    .home-2026 .hp-impact-card__header{
        padding: 20px !important;
    }
    .home-2026 .hp-impact-stat{
        padding: 20px 20px !important;
        gap: 25px !important;
    }
    .home-2026 .hp-impact-stat__num{
        min-width: 65px !important;
        font-size: 25px !important;
    }
    .home-2026 .hp-integrations{
        padding: 60px 0 !important;
    }
    .home-2026 .hp-btn-white{
        font-size: 20px !important;
    }
    .home-2026 .hp-btn-outline{
        font-size: 20px !important;
    }
    .home-2026 .hp-ai-trust{
        padding: 60px 0 !important;
    }
    .home-2026 .hp-analysts{
        padding: 60px 0 !important;
    }
    .home-2026 .hp-stories{
        padding: 60px 0 !important;
    }
    .home-2026 .hp-latest{
        padding: 60px 0 !important;
    }
    br.tablet-only{
        display: none !important;
    }
}

@media (max-width: 991px) {
    .home-2026 .hp-hero__content { padding: 140px 20px 60px; }

    .home-2026 .hp-products__cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    .home-2026 .hp-product-card {
        min-height: auto;
        padding: 20px;
    }
    .home-2026 .hp-product-card__badge {
        margin-bottom: 16px;
    }
    .home-2026 .hp-product-card__title {
        font-size: 20px;
        line-height: 26px;
    }
    .home-2026 .hp-product-card__sub {
        font-size: 14px;
        line-height: 20px;
    }
    .home-2026 .hp-product-card__cta {
        font-size: 14px;
    }
    .home-2026 .hp-impact__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .home-2026 .hp-platform{
        display: none !important;
    }
    .home-2026 .hp-platform-mobile{
        display: block;
    }
    .home-2026 .hp-ai-trust__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .home-2026 .hp-analysts__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .home-2026 .hp-stories__row {
        flex-direction: column;
    }

    .home-2026 .hp-latest__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .home-2026 .hp-impact,
    .home-2026 .hp-integrations,
    .home-2026 .hp-ai-trust,
    .home-2026 .hp-analysts,
    .home-2026 .hp-stories,
    .home-2026 .hp-latest {
        padding: 60px 0;
    }
    br.tablet-only{
        display: block !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .home-2026 .hp-products__cards {
        grid-template-columns: repeat(3, 1fr);
    }
    .home-2026 .hp-ai-trust__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .home-2026 .hp-stories__row {
        flex-direction: row;
    }
    .home-2026 .hp-stories__row--top .hp-story-card:first-child,
    .home-2026 .hp-stories__row--top .hp-story-card:last-child,
    .home-2026 .hp-stories__row--bottom .hp-story-card:first-child,
    .home-2026 .hp-stories__row--bottom .hp-story-card:last-child {
        flex: 1;
    }
    .home-2026 .hp-latest__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    /* Code added by Shahnawaz */
    .home-2026 .hp-products__cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .home-2026 .hp-products__cards .hp-product-card:nth-child(3){
        grid-column: span 2;
        justify-self: center;
        width: 50%;
    }
    .home-2026 .hp-products__cards{
        gap: 24px !important;
    }
    .home-2026 .hp-product-card__badge{
        margin-bottom: 40px !important;
        font-size: 16px;
    }
    .home-2026 .hp-logo-bar{
        margin-top: 80px !important;
    }
    .home-2026 .hp-logo-bar__heading{
        font-size: 32px !important;
    }
    .home-2026 .hp-platform-mobile{
        padding-bottom: 80px !important;
    }
    .home-2026 .hp-btn-white{
        font-size: 21px !important;
    }
    .home-2026 .hp-cta__title{
        font-size: 38px !important;
    }
    .home-2026 .hp-section-title{
        font-size: 62px !important;
        text-align: center !important;
    }
    .home-2026 .hp-section-sub{
        font-size: 32px !important;
    }
    .home-2026 .hp-impact__grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px !important;
        padding: 24px 32px !important;
    }
    
    .home-2026 .hp-impact__grid .hp-impact-card{
        margin: 0 25px !important;
        box-shadow: 0 3.5px 20px rgba(0, 0, 0, 0.08) !important;
    }
    .home-2026 .hp-impact__grid .hp-impact-card__header{
        padding: 30px 35px !important;
    }
    .home-2026 .hp-impact__grid .hp-impact-stat{
        gap: 30px !important;
    }
    .home-2026 .hp-impact__grid .hp-impact-stat__text{
        font-size: 18px !important;
    }
    .hp-int-rail--forward .logoCarouselSec .container{
        padding-top: 20px !important;
    }
    .hp-int-rail--reverse .logoCarouselSec .container{
        padding-top: 20px !important;
    }
    .home-2026 .hp-impact-card__badge{
        font-size: 16px !important;
    }
    br.mobile-only{
        display: none !important;
    }
    br.desktop-only{
        display: none !important;
    }
    .home-2026 .hp-analysts__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .home-2026 .hp-analysts__grid{
        gap: 30px !important;
    }
    .home-2026 .hp-analysts__grid .hp-analyst-card:nth-child(3){
        grid-column: span 2;
        justify-self: center;
        width: 50%;
    }
    .home-2026 .hp-link-arrow{
        font-size: 20px !important;
    }
    .home-2026 .hp-ai-trust__card{
        padding: 25px !important;
    }
    .hp-story-card__footer{
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        margin-top: 30px !important;
        gap: 20px !important;
    }
    .home-2026 .hp-story-card__author{
        align-items: flex-start !important;
    }
    .home-2026 .hp-story-card__name{
        font-size: 22px !important;
    }
    .home-2026 .hp-story-card__role{
        font-size: 18px !important;
    }
    .home-2026 .hp-latest-card__badge{
        font-size: 16px !important;
        padding: 9px 16px !important;
    }
    .purple-glow-wrapper{
        background-size: cover !important;
    }
}

@media (max-width: 767px) {
    /* background effects for entire page sections */
    .home-2026{
        background: linear-gradient(180deg, #F1F1F7 0.04%, #FFF 84.64%);
    }
    .purple-glow-wrapper{
        background: none !important;
    }
    .home-2026 .hp-impact{
        position: relative;
        overflow: hidden;
        z-index: 1;
    }
    .home-2026 .hp-impact::before{
        content: '';
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        background-image: url('/wp-content/uploads/Ellipse-measurable-impact-section.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: -1;
    }
    .home-2026 .hp-ai-trust{
        position: relative;
        overflow: hidden;
        z-index: 1;
    }
    .home-2026 .hp-ai-trust::before{
        content: '';
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        background-image: url('/wp-content/uploads/Ellipse-enterpise-grade-section.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: -1;
    }
    .home-2026 .hp-analysts{
        position: relative;
        overflow: hidden;
        z-index: 1;
    }
    .home-2026 .hp-analysts::before{
        content: '';
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        background-image: url('/wp-content/uploads/Ellipse-analyst-section.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: -1;
    }
    .home-2026 .hp-stories{
        position: relative;
        overflow: hidden;
        z-index: 1;
    }
    .home-2026 .hp-stories::before{
        content: '';
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        background-image: url('/wp-content/uploads/Ellipse-customer-stories-section.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: -1;
    }
    .home-2026 .hp-latest{
        position: relative;
        overflow: hidden;
        z-index: 1;
    }
    .home-2026 .hp-latest::before{
        content: '';
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        background-image: url('/wp-content/uploads/Ellipse-latest-from-safe-section.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: -1;
    }
    /* background effects ends here */


    .home-2026 .hp-products{
        background: transparent;
    }
    .home-2026 .hp-impact{
        background: transparent;
    }
    .home-2026 .hp-integrations{
        background: transparent;
    }
    .home-2026 .hp-ai-trust{
        background: transparent;
    }
    .home-2026 .hp-analysts{
        background: transparent;
    }
    .home-2026 .hp-stories{
        background: transparent;
    }
    .home-2026 .hp-latest{
        background: transparent;
    }
    .home-2026 .hp-hero__title{
        font-size: 44px !important;
        letter-spacing: -1.8px !important;
    }
    .has-promo .home-2026 .hp-hero{ min-height: 93vh;}
    .home-2026 .hp-hero { min-height: 100vh; }
    .home-2026 .hp-hero__content { padding: 120px 16px 50px; }
    .home-2026 .hp-products { padding: 40px 0 0; }

    .home-2026 .hp-products__cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .home-2026 .hp-product-card {
        min-height: auto;
        padding: 20px;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 0;
    }
    .home-2026 .hp-product-card__badge {
        margin-bottom: 12px;
        padding: 6px 12px;
        font-size: 14px;
    }
    .home-2026 .hp-product-card__body {
        width: 100%;
        margin-top: 0;
    }
    .home-2026 .hp-product-card__title {
        font-size: 20px;
        line-height: 26px;
    }
    .home-2026 .hp-product-card__sub {
        font-size: 14px;
        line-height: 20px;
    }
    .home-2026 .hp-product-card__cta {
        font-size: 14px;
        margin-top: 6px;
    }

    .home-2026 .hp-integrations .hp-section-title {
        line-height: 1.15;
    }
    .home-2026 .hp-integrations .hp-section-sub {
        line-height: 1.2;
    }

    .home-2026 .hp-impact-stat { gap: 24px; padding: 20px 24px; }
    .home-2026 .hp-impact-card__header { padding: 24px; }
    .home-2026 .hp-analyst-card__inner { padding: 24px; }
    .home-2026 .hp-latest-card__body { padding: 24px; }
    .home-2026 .hp-latest-card__img { height: auto; }
    .home-2026 .hp-story-card { min-height: auto; padding: 24px 20px; }
    .home-2026 .hp-ai-trust__card { padding: 36px 24px; width: 80%;
        margin: 0 auto;}

    /* code added by Shahnawaz */
    .hp-product-card{
        padding: 25px !important;
    }
    .home-2026 .hp-product-card__badge{
        margin-bottom: 40px;
    }
    .hp-product-card__body .hp-product-card__title{
        margin-bottom: 8px !important;
    }
    .hp-product-card__body .hp-product-card__sub{
        margin-bottom: 12px !important;
    }
    .home-2026 .hp-logo-bar{
        margin-top: 75px !important;
    }
    .home-2026 .hp-logo-bar__heading{
        font-size: 28px !important;
    }
    .home-2026 .hp-logo-bar .logoCarouselSec{
        margin-bottom: 0px !important;
    }
    .home-2026 .hp-impact__header .hp-section-sub{
        font-size: 28px !important;
    }
    .home-2026 .hp-cta__title{
        color: #FFF;
        text-align: center;
        font-family: "Darker Grotesque" !important;
        font-size: 28px !important;
        font-style: normal !important;
        font-weight: 500 !important;
        line-height: 40px !important; /* 142.857% */
        letter-spacing: -1.07px !important;
    }
    .home-2026 .hp-cta .hp-btn-white{
        font-size: 18px !important;
        padding: 7px 12px !important;
        border-radius: 12px !important;
    }
    .home-2026 .hp-impact__header .hp-section-title{
        font-family: "Darker Grotesque";
        font-size: 40px !important;
        font-weight: 400 !important;
        line-height: 120% !important; /* 48px */
        letter-spacing: -1.6px !important;
    }
    .home-2026 .hp-impact-card__title{
        font-size: 20px !important;
    }
    .home-2026 .hp-impact-card__title br.mobile-only{
        display: block !important;
    }
    .home-2026 .hp-impact-card__title br.desktop-only{
        display: none !important;
    }
    .home-2026 .hp-impact-card__badge{
        font-size: 14px !important;
        padding: 6px 12px;
    }
    .home-2026 .hp-impact-stat{
        flex-direction: row !important;
    }
    .home-2026 .hp-impact{
        padding-bottom: 30px !important;
    }
    .home-2026 .hp-integrations{
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
    .home-2026 .hp-integrations .hp-section-title{
        font-size: 40px !important;
    }
    .home-2026 .hp-integrations .hp-section-sub{
        font-size: 28px !important;
    }
    .home-2026 .hp-int-rails{
        margin-top: 32px !important;
        margin-bottom: 32px !important;
    }
    .home-2026 .hp-integrations .hp-integrations__cta .hp-btn-outline{
        font-size: 18px !important;
        padding: 7px 12px !important;
        border-radius: 12px !important;
    }
    .home-2026 .hp-ai-trust{
        padding-bottom: 30px !important;
    }
    .home-2026 .hp-ai-trust .hp-section-title{
        font-size: 40px !important;
        font-weight: 400 !important;
        line-height: 40px !important;
        letter-spacing: -1.5px !important;
    }
    .home-2026 .hp-analysts .hp-section-title{
        font-size: 40px !important;
        font-weight: 400 !important;
        line-height: 40px !important;
        letter-spacing: -1.5px !important;
        text-align: center !important;
    }
    .home-2026 .hp-analysts .hp-analyst-card__desc{
        font-size: 18px !important;
    }
    .home-2026 .hp-analysts .hp-link-arrow{
        font-size: 16px !important;
    }
    .home-2026 .hp-analysts{
        padding-bottom: 30px !important;
    }
    .home-2026 .hp-stories{
        padding-bottom: 30px !important;
    }
    .home-2026 .hp-stories .hp-section-title{
        font-size: 40px !important;
        font-weight: 400 !important;
        line-height: 40px !important;
        letter-spacing: -1.5px !important;
        text-align: center !important;
    }
    .home-2026 .hp-stories .hp-btn-outline{
        font-size: 18px !important;
        padding: 7px 12px !important;
        border-radius: 12px !important;
    }
    .home-2026 .hp-stories__cta {
        margin-top: 32px !important;
    }
    .home-2026 .hp-latest .hp-section-title{
        font-size: 40px !important;
        font-weight: 400 !important;
        line-height: 40px !important;
        letter-spacing: -1.5px !important;
        text-align: center !important;
    }
    .home-2026 .hp-latest .hp-latest-card__title{
        font-size: 20px !important;
        margin-bottom: 12px !important;
    }
    .home-2026 .hp-latest .hp-latest-card__excerpt{
        font-size: 16px !important;
        margin-bottom: 15px !important;
    }
    .home-2026 .hp-latest .hp-link-arrow{
        font-size: 16px !important;
    }
    .home-2026 .hp-latest-card__badge{
        font-size: 14px !important;
        padding: 8px 12px;
    }
    .home-2026 .hp-ai-trust .hp-section-title{
        margin-bottom: 40px !important;
    }
    .home-2026 .hp-analysts .hp-section-title{
        margin-bottom: 40px !important;
    }
    .home-2026 .hp-stories .hp-section-title{
        margin-bottom: 40px !important;
    }
    .home-2026 .hp-latest .hp-section-title{
        margin-bottom: 40px !important;
    }
    br.tablet-only{
        display: none !important;
    }
}

@media (max-width: 550px) {
    .home-2026 .hp-impact-stat {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .home-2026 .hp-story-card__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}
