/* ---------------------------------------------------
  HOME PAGE STYLES
  Primary green: #62CAB1
  Dark teal: #2D4A56
  Text dark: #254450
---------------------------------------------------*/


/* ---------------------------------------------------
  ADDITIONAL FONT FACES (for home page)
---------------------------------------------------*/

@font-face {
    font-family: "SuisseIntl-Medium";
    src: url("../fonts/SuisseIntl-Medium.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "SuisseIntl-Black";
    src: url("../fonts/SuisseIntl-Black.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "WorkSans-SemiBold";
    src: url("../fonts/WorkSans-SemiBold.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "WorkSans-ExtraBold";
    src: url("../fonts/WorkSans-ExtraBold.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}


/* ---------------------------------------------------
  NAVBAR - transparent on home hero
---------------------------------------------------*/

.home .navbar-light {
    background-color: transparent !important;
    box-shadow: none !important;
}

.home .navbar-light .navbar-toggler {
    border: 0px;
}

.home .navbar-toggler-icon {
    background-image: url("/img/icon-menu-white.svg") !important;
}

.home .navbar-brand img.img-normal {
    display: none;
}

.home .navbar-brand img.img-white {
    display: block;
}

.home .navbar-light .navbar-nav .nav-link {
    color: #fff;
}

.navbar.fixed-top.menu-scroll {
    background-color: #fff !important;
}

.navbar.fixed-top.menu-scroll .navbar-brand img.img-normal {
    display: block;
}

.navbar.fixed-top.menu-scroll .navbar-brand img.img-white {
    display: none;
}

.navbar.fixed-top.menu-scroll .nav-link {
    color: #000;
}

.navbar.fixed-top.menu-scroll .nav-link:hover {
    color: #62CAB1;
}


/* ---------------------------------------------------
  HERO
---------------------------------------------------*/

.hero-home {
    background-color: #62CAB1;
    padding-top: 180px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.hero-home h1 {
    font-family: "SuisseIntl-Medium", sans-serif;
    font-size: 3.6em;
    font-weight: 500;
    color: #254450;
    line-height: 1.08em;
    margin-bottom: 0.6em;
    max-width: 430px;
}

.hero-home .hero-subtitle {
    color: #254450;
    font-size: 1em;
    line-height: 1.6em;
    max-width: 390px;
    margin-bottom: 2em;
}

.hero-home .hero-subtitle strong {
    font-family: "SuisseIntl-Bold", sans-serif;
}

.hero-home .hero-subtitle span {
    font-family: "SuisseIntl-Medium", sans-serif;
}

.hero-home .hero-buttons {
    display: flex;
    gap: 1em;
    flex-wrap: wrap;
}

.btn-hero-outline {
    display: inline-block;
    padding: 0.7em 1.5em;
    border-radius: 25px;
    border: 3px solid #254450;
    background: rgba(37, 68, 80, 0.15);
    color: #254450;
    font-family: "WorkSans-SemiBold", sans-serif;
    font-size: 1em;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-hero-outline:hover {
    background: #254450;
    color: #62CAB1;
}

.hero-card-wrapper {
    background: conic-gradient(from 90deg at 50% 50%, rgba(0, 0, 0, 0.15) 9deg, rgba(98, 202, 177, 0.04) 130deg, rgba(37, 68, 80, 0.20) 222deg);
    border-radius: 13px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card-wrapper video,
.hero-card-wrapper img {
    width: 100%;
    border-radius: 13px;
    display: block;
}


/* ---------------------------------------------------
  DARK SECTION WRAPPER (gradient over all 3 sub-sections)
---------------------------------------------------*/

.dark-section-home {
    background-color: #2D4A56;
    position: relative;
    overflow: hidden;
}

.dark-section-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(81, 157, 133, 0.30) 26%, rgba(45, 74, 86, 0.30) 100%);
    pointer-events: none;
}


/* ---------------------------------------------------
  PROVEN PERFORMANCE SECTION
---------------------------------------------------*/

.proven-home {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.proven-home h2 {
    font-family: "SuisseIntl-Medium", sans-serif;
    font-size: 3.6em;
    font-weight: 500;
    color: #fff;
    text-transform: capitalize;
    line-height: 1.08em;
    margin-bottom: 0.8em;
}

.badges-box {
    background: rgba(98, 202, 177, 0.06);
    border: 1px solid rgba(98, 202, 177, 0.40);
    border-radius: 30px;
    padding: 30px 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.badges-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px 60px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.badge-circle {
    width: 53px;
    height: 53px;
    min-width: 53px;
    background-color: #62CAB1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-circle i {
    color: #fff;
    font-size: 1.1em;
}

.badge-item span:not(.badge-circle) {
    font-family: "SuisseIntl-Medium", sans-serif;
    font-weight: 500;
    font-size: 1.8em;
    color: #fff;
    line-height: 1;
}


/* ---------------------------------------------------
  FROM ROBOTICS SUB-SECTION (still on dark)
---------------------------------------------------*/

.fromrobotics-home {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.fromrobotics-home h2 {
    font-family: "SuisseIntl-Medium", sans-serif;
    font-size: 3.6em;
    font-weight: 500;
    color: #62CAB1;
    line-height: 1.08em;
    margin-bottom: 0;
}

.fromrobotics-home p {
    font-family: "SuisseIntl-Medium", sans-serif;
    color: #fff;
    font-size: 1em;
    line-height: 1.7em;
    font-weight: 500;
}


/* ---------------------------------------------------
  SPECIALIZED CYBERSECURITY LLM (alias1) - on dark
---------------------------------------------------*/

.alias1-home {
    padding: 0 0 100px 0;
    position: relative;
    z-index: 1;
}

.alias1-logo-block {
    background: rgba(37, 68, 80, 0.20);
    border-radius: 30px;
    min-height: 343px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.alias1-home h2 {
    font-family: "SuisseIntl-Medium", sans-serif;
    font-size: 3.6em;
    font-weight: 500;
    color: #62CAB1;
    text-transform: capitalize;
    line-height: 1.08em;
    margin-bottom: 0.5em;
}

.alias1-home .alias1-desc {
    color: #fff;
    font-family: "SuisseIntl-Medium", sans-serif;
    font-size: 1em;
    line-height: 1.7em;
    font-weight: 500;
}

.alias1-highlight {
    display: inline-block;
    background: rgba(98, 202, 177, 0.20);
    border-radius: 32px;
    padding: 3px 12px;
    font-size: 1em;
}

.alias1-home .alias1-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 1.5em;
}

.btn-cai-pro {
    display: inline-block;
    padding: 0.7em 1.3em;
    border-radius: 25px;
    border: 3px solid #254450;
    background: rgba(98, 202, 177, 0.45);
    color: #254450;
    font-family: "WorkSans-SemiBold", sans-serif;
    font-size: 1em;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-cai-pro:hover {
    background: rgba(98, 202, 177, 0.7);
    color: #254450;
}

.btn-cai-pro strong {
    font-family: "WorkSans-ExtraBold", sans-serif;
    font-weight: 800;
}

.btn-learn-outline {
    display: inline-block;
    padding: 0.7em 1.3em;
    border-radius: 25px;
    border: 3px solid #62CAB1;
    background: rgba(255, 255, 255, 0.30);
    color: #fff;
    font-family: "WorkSans-SemiBold", sans-serif;
    font-size: 1em;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-learn-outline:hover {
    background: rgba(255, 255, 255, 0.5);
    color: #fff;
}


/* ---------------------------------------------------
  RESEARCH HIGHLIGHTS (dark section)
---------------------------------------------------*/

.research-home {
    padding: 0 0 100px 0;
    position: relative;
    z-index: 1;
}

.research-home h2 {
    font-family: "SuisseIntl-Medium", sans-serif;
    font-size: 3.6em;
    font-weight: 500;
    color: #62CAB1;
    line-height: 1.08em;
    margin-bottom: 0.5em;
}

.research-home-desc {
    color: #fff;
    font-family: "SuisseIntl-Medium", sans-serif;
    font-size: 1em;
    line-height: 1.7em;
    font-weight: 500;
    margin-bottom: 1.8em;
}

.research-home-desc--cna {
    padding-top: 1.2em;
    margin-top: -0.4em;
    margin-bottom: 1.4em;
    border-top: 1px solid rgba(98, 202, 177, 0.25);
}

.research-home-desc--cna strong {
    color: #62CAB1;
    font-weight: 600;
}

.research-home-stat {
    font-family: "SuisseIntl-Bold", sans-serif;
    font-size: 2.2em;
    font-weight: 700;
    color: #62CAB1;
    line-height: 1;
    display: block;
    margin-bottom: 10px;
}

.research-home-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-research-outline--ghost {
    border-color: rgba(98, 202, 177, 0.55) !important;
    color: rgba(98, 202, 177, 0.85) !important;
}

.btn-research-outline--ghost:hover {
    border-color: #62CAB1 !important;
    color: #fff !important;
    background: #62CAB1 !important;
}

.btn-research-outline {
    display: inline-block;
    padding: 0.7em 1.3em;
    border-radius: 25px;
    border: 3px solid #62CAB1;
    background: transparent;
    color: #62CAB1;
    font-family: "WorkSans-SemiBold", sans-serif;
    font-size: 1em;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-research-outline:hover {
    background: rgba(98, 202, 177, 0.2);
    color: #62CAB1;
    text-decoration: none;
}

.research-home-card {
    display: flex;
    flex-direction: column;
    background: rgba(37, 68, 80, 0.50);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(98, 202, 177, 0.2);
}

.research-home-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    border-color: rgba(98, 202, 177, 0.5);
}

.research-home-thumb {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #1a2e38;
}

.research-home-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.research-home-card:hover .research-home-thumb img {
    transform: scale(1.05);
}

.research-home-card h5 {
    color: white;
    font-family: "SuisseIntl-Bold", sans-serif;
    font-weight: 700;
    font-size: 0.95em;
    line-height: 1.35;
    padding: 15px 15px 0;
    margin-bottom: 0;
}

.research-home-link {
    color: #62CAB1;
    font-weight: 600;
    font-size: 0.85em;
    padding: 10px 15px 15px;
    display: block;
}


/* ---------------------------------------------------
  SECURITY AGENTS SECTION (white bg)
---------------------------------------------------*/

.agents-home {
    background-color: #fff;
    padding: 80px 0;
}

.agents-home h2 {
    font-family: "SuisseIntl-Medium", sans-serif;
    font-size: 3.6em;
    font-weight: 500;
    color: #62CAB1;
    line-height: 1.08em;
    margin-bottom: 0.3em;
}

.agents-home .agents-subtitle {
    font-family: "SuisseIntl-Bold", sans-serif;
    color: #254450;
    font-size: 1em;
    font-weight: 700;
    max-width: 508px;
    line-height: 1.5em;
    margin-bottom: 2.5em;
}

.agent-card-home {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.agent-card-home .agent-img-wrapper {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
}

.agent-card-home .agent-img {
    max-width: 100%;
    max-height: 300px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}

.agent-card-home .agent-img.agent-img-scale-up {
    transform: scale(1.45);
}

.agent-card-home .agent-img.agent-img-scale-md {
    transform: scale(1.2);
}

.agent-card-home .agent-name-home {
    font-family: "SuisseIntl-Bold", sans-serif;
    font-size: 2.5em;
    font-weight: 700;
    color: #254450;
    line-height: 1;
    margin-bottom: 12px;
}

.agent-card-home .agent-desc-home {
    font-family: "Inter", "WorkSans", sans-serif;
    font-size: 1em;
    color: #254450;
    font-weight: 500;
    line-height: 1.5em;
    margin-bottom: 20px;
    max-width: 316px;
    flex: 1;
}

.btn-buy-now {
    display: inline-block;
    padding: 0.7em 1.3em;
    border-radius: 25px;
    border: 3px solid #254450;
    background: rgba(98, 202, 177, 0.45);
    color: #254450;
    font-family: "WorkSans-SemiBold", sans-serif;
    font-size: 1em;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: auto;
}

.btn-buy-now:hover {
    background: rgba(98, 202, 177, 0.7);
    color: #254450;
}

.btn-buy-now strong {
    font-family: "WorkSans-ExtraBold", sans-serif;
    font-weight: 800;
}

.agent-more-home .coming-soon-label {
    font-family: "SuisseIntl-Black", sans-serif;
    font-size: 1.2em;
    font-weight: 900;
    color: #62CAB1;
}


/* ---------------------------------------------------
  WORLD LEADERS SECTION (bg image)
---------------------------------------------------*/

.leaders-home {
    background-color: #2D4A56;
    background-image:
        repeating-linear-gradient(
            0deg,
            rgba(98, 202, 177, 0.07) 0px,
            rgba(98, 202, 177, 0.07) 1px,
            transparent 1px,
            transparent 48px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(98, 202, 177, 0.05) 0px,
            rgba(98, 202, 177, 0.05) 1px,
            transparent 1px,
            transparent 48px
        );
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.leaders-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(0deg, rgba(81, 157, 133, 0.30) 26%, rgba(45, 74, 86, 0.30) 100%),
        radial-gradient(ellipse at 10% 90%, rgba(98, 202, 177, 0.25) 0%, transparent 45%),
        radial-gradient(ellipse at 90% 10%, rgba(98, 202, 177, 0.18) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(45, 74, 86, 0.50) 0%, transparent 65%),
        radial-gradient(circle at 25% 30%, rgba(98, 202, 177, 0.12) 0%, transparent 35%),
        radial-gradient(circle at 75% 70%, rgba(98, 202, 177, 0.10) 0%, transparent 30%),
        conic-gradient(from 160deg at 50% 50%, rgba(45, 74, 86, 0.00) 0deg, rgba(98, 202, 177, 0.08) 60deg, rgba(45, 74, 86, 0.00) 120deg, rgba(98, 202, 177, 0.06) 200deg, rgba(45, 74, 86, 0.00) 280deg, rgba(98, 202, 177, 0.08) 360deg);
    pointer-events: none;
}

.leaders-home::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background:
        linear-gradient(0deg, rgba(81, 157, 133, 0.30) 0%, transparent 100%),
        radial-gradient(ellipse at 30% 100%, rgba(98, 202, 177, 0.20) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 100%, rgba(98, 202, 177, 0.15) 0%, transparent 45%);
    pointer-events: none;
}

.leaders-home .container {
    position: relative;
    z-index: 1;
}

.leaders-home h2 {
    font-family: "SuisseIntl-Medium", sans-serif;
    font-size: 3.6em;
    font-weight: 500;
    color: #fff;
    text-transform: capitalize;
    line-height: 1.08em;
    margin-bottom: 0.3em;
}

.leaders-home .leaders-intro {
    font-family: "SuisseIntl-Medium", sans-serif;
    color: #fff;
    font-size: 1em;
    line-height: 1.7em;
    font-weight: 500;
    max-width: 625px;
    margin: 0 auto 3em auto;
}

.leaders-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 2em;
}

.leader-col h3 {
    font-family: "SuisseIntl-Medium", sans-serif;
    font-size: 1.8em;
    font-weight: 500;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.8em;
}

.leader-col p {
    font-family: "SuisseIntl-Medium", sans-serif;
    color: #fff;
    font-size: 1em;
    line-height: 1.7em;
    font-weight: 500;
    margin-bottom: 1.5em;
}

.btn-explore {
    display: inline-block;
    padding: 0.7em 1.5em;
    border-radius: 25px;
    border: 3px solid #254450;
    background: rgba(98, 202, 177, 0.45);
    color: #fff;
    font-family: "WorkSans-SemiBold", sans-serif;
    font-size: 1em;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-explore:hover {
    background: rgba(98, 202, 177, 0.7);
    color: #fff;
}


/* ---------------------------------------------------
  TRUSTED BY INDUSTRY (green bg)
---------------------------------------------------*/

.trusted-home {
    background-color: #529d86;
    padding: 80px 0;
}

.trusted-home h2 {
    font-family: "SuisseIntl-Medium", sans-serif;
    font-size: 3.6em;
    font-weight: 500;
    color: #254450;
    line-height: 1.08em;
    margin-bottom: 0.5em;
    max-width: 562px;
}

.trusted-home .trusted-desc {
    font-family: "SuisseIntl-Medium", sans-serif;
    color: #254450;
    font-size: 1em;
    line-height: 1.7em;
    font-weight: 500;
    max-width: 551px;
    margin-bottom: 2em;
}

.logo-marquee {
    overflow: hidden;
    width: 100%;
}

.marquee-row {
    display: flex;
    width: 100%;
    overflow: hidden;
    margin-bottom: 10px;
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.marquee-row:last-child {
    margin-bottom: 0;
}

.marquee-track {
    display: flex;
    align-items: center;
    animation: marquee-left 45s linear infinite;
    width: max-content;
}

.marquee-right .marquee-track {
    animation: marquee-right 45s linear infinite;
}

.marquee-row:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-track .logo-item {
    flex: 0 0 auto;
    width: 170px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
}

.marquee-track .logo-item img {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.3);
    opacity: 0.6;
    transition: all 0.3s;
}

.marquee-track .logo-item img:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

@keyframes marquee-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marquee-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}


/* ---------------------------------------------------
  CTA SECTION (dark)
---------------------------------------------------*/

.cta-home {
    background-color: #2D4A56;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(81, 157, 133, 0.30) 26%, rgba(45, 74, 86, 0.30) 100%);
    pointer-events: none;
}

.cta-home .container {
    position: relative;
    z-index: 1;
}

.cta-home h2 {
    font-family: "SuisseIntl-Medium", sans-serif;
    font-size: 3.6em;
    font-weight: 500;
    color: #fff;
    line-height: 1.08em;
    margin-bottom: 0.5em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-home p {
    font-family: "SuisseIntl-Medium", sans-serif;
    color: #fff;
    font-size: 1em;
    max-width: 500px;
    margin: 0 auto 2em auto;
    line-height: 1.7em;
    font-weight: 500;
}

.cta-home .alias1-highlight {
    display: inline-block;
    background: rgba(98, 202, 177, 0.20);
    border-radius: 32px;
    padding: 3px 12px;
}

.btn-cta-gradient {
    display: inline-block;
    padding: 0.7em 1.5em;
    border-radius: 25px;
    border: 3px solid #62CAB1;
    background: conic-gradient(from 90deg at 50% 50%, rgba(98, 202, 177, 0.45) 40deg, rgba(49, 100, 88, 0.45) 93deg);
    color: #fff;
    font-family: "WorkSans-SemiBold", sans-serif;
    font-size: 1em;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-cta-gradient:hover {
    background: rgba(98, 202, 177, 0.6);
    color: #fff;
}

.btn-cta-gradient strong {
    font-family: "WorkSans-ExtraBold", sans-serif;
    font-weight: 800;
}


/* ---------------------------------------------------
  RESPONSIVE
---------------------------------------------------*/

@media only screen and (min-width: 1920px) {
    .hero-home {
        padding-top: 220px;
        padding-bottom: 100px;
    }
    .hero-home h1 {
        font-size: 4.2em;
        max-width: 500px;
    }
}

@media only screen and (min-width: 993px) and (max-width: 1199px) {
    .hero-home h1 {
        font-size: 2.8em;
    }
    .proven-home h2,
    .fromrobotics-home h2,
    .alias1-home h2,
    .agents-home h2,
    .leaders-home h2,
    .trusted-home h2,
    .cta-home h2 {
        font-size: 2.8em;
    }
    .badge-item span:not(.badge-circle) {
        font-size: 1.4em;
    }
    .agent-card-home .agent-name-home {
        font-size: 2em;
    }
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
    .hero-home {
        padding-top: 150px;
        padding-bottom: 60px;
        text-align: center;
    }
    .hero-home h1 {
        font-size: 2.5em;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-home .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-home .hero-buttons {
        justify-content: center;
    }
    .proven-home h2,
    .fromrobotics-home h2,
    .alias1-home h2,
    .agents-home h2,
    .leaders-home h2,
    .trusted-home h2,
    .cta-home h2 {
        font-size: 2.2em;
    }
    .badges-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .badge-item span:not(.badge-circle) {
        font-size: 1.3em;
    }
    .leaders-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .home .navbar-light .navbar-nav .nav-link {
        color: #000;
    }
    .navbar.fixed-top.menu-scroll {
        height: 75px !important;
        margin: 0em !important;
        padding: 0em !important;
    }
    .navbar.fixed-top.menu-scroll .navbar-brand img {
        width: 37px;
        height: 38px;
    }
    .navbar.fixed-top.menu-scroll .navbar-toggler-icon {
        background-image: url(/img/icon-menu.svg) !important;
    }
    .navbar.fixed-top.menu-scroll .navbar-brand img.img-normal {
        display: block;
    }
    .navbar.fixed-top.menu-scroll .navbar-brand img.img-white {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .hero-home {
        padding-top: 120px;
        padding-bottom: 50px;
        text-align: center;
    }
    .hero-home h1 {
        font-size: 2em;
        max-width: 100%;
    }
    .hero-home .hero-subtitle {
        max-width: 100%;
        font-size: 0.95em;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-home .hero-buttons {
        justify-content: center;
    }
    .proven-home {
        padding: 3em 0 0 0;
    }
    .proven-home h2 {
        font-size: 2em;
    }
    .badges-box {
        padding: 20px;
    }
    .badges-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .badge-circle {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    .badge-item span:not(.badge-circle) {
        font-size: 1.1em;
    }
    .fromrobotics-home {
        padding: 3em 0;
    }
    .fromrobotics-home h2 {
        font-size: 1.8em;
        margin-bottom: 0.5em;
    }
    .alias1-home {
        padding: 0 0 3em 0;
    }
    .alias1-home h2 {
        font-size: 2em;
    }
    .research-home {
        padding: 0 0 3em 0;
        text-align: center;
    }
    .research-home h2 {
        font-size: 2em;
    }
    .research-home-stat {
        font-size: 1.8em;
    }
    .btn-research-outline {
        margin-bottom: 2em;
    }
    .alias1-logo-block {
        min-height: 250px;
        margin-bottom: 2em;
    }
    .agents-home {
        padding: 3em 0;
    }
    .agents-home h2 {
        font-size: 2em;
    }
    .agent-card-home .agent-name-home {
        font-size: 1.8em;
    }
    .agent-card-home .agent-img-wrapper {
        height: 220px;
    }
    .agent-card-home .agent-img {
        max-width: 100%;
        max-height: 220px;
    }
    .leaders-home {
        padding: 3em 0;
    }
    .leaders-home h2 {
        font-size: 2em;
    }
    .leaders-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .trusted-home {
        padding: 3em 0;
    }
    .trusted-home h2 {
        font-size: 2em;
    }
    .cta-home {
        padding: 3em 0;
    }
    .cta-home h2 {
        font-size: 1.8em;
    }
    .marquee-track .logo-item {
        width: 140px;
        padding: 0 15px;
    }
    .marquee-track .logo-item img {
        max-height: 40px;
    }
    .home .navbar-light .navbar-nav .nav-link {
        color: #000;
    }
    .navbar.fixed-top.menu-scroll {
        height: 75px !important;
        margin: 0em !important;
        padding: 0em !important;
    }
    .navbar.fixed-top.menu-scroll .navbar-brand img {
        width: 37px;
        height: 38px;
    }
    .navbar.fixed-top.menu-scroll .navbar-toggler-icon {
        background-image: url(/img/icon-menu.svg) !important;
    }
    .navbar.fixed-top.menu-scroll .navbar-brand img.img-normal {
        display: block;
    }
    .navbar.fixed-top.menu-scroll .navbar-brand img.img-white {
        display: none;
    }
}


/* ---------------------------------------------------
  5 PILLARS GRID (LLMs / Scaffolds / Datasets / Agents / Steering)
---------------------------------------------------*/
.pillars-home {
    padding: 60px 0 100px;
    position: relative;
    z-index: 1;
}

.pillars-intro {
    text-align: center;
    margin-bottom: 60px;
}

.pillars-intro h2 {
    font-family: "SuisseIntl-Medium", sans-serif;
    font-size: 3.6em;
    font-weight: 500;
    color: #fff;
    line-height: 1.08em;
    margin-bottom: 0.5em;
}

.pillars-intro p {
    color: rgba(255, 255, 255, 0.78);
    font-family: "SuisseIntl-Medium", sans-serif;
    font-size: 1.05em;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.6em;
}

.pillars-grid {
    margin-top: 20px;
}

.pillar-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: rgba(98, 202, 177, 0.06);
    border: 1px solid rgba(98, 202, 177, 0.32);
    border-radius: 22px;
    padding: 32px 28px 28px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #62CAB1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.pillar-card:hover {
    background: rgba(98, 202, 177, 0.10);
    border-color: rgba(98, 202, 177, 0.65);
    transform: translateY(-4px);
    text-decoration: none;
    box-shadow: 0 18px 40px rgba(10, 25, 32, 0.45);
}

.pillar-card:hover::before {
    transform: scaleX(1);
}

.pillar-tag {
    display: inline-block;
    font-family: "WorkSans-SemiBold", "Work Sans", sans-serif;
    font-size: 0.7em;
    font-weight: 600;
    color: #62CAB1;
    background: rgba(98, 202, 177, 0.14);
    padding: 4px 12px;
    border-radius: 999px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    align-self: flex-start;
    margin-bottom: 18px;
}

.pillar-card h3 {
    font-family: "SuisseIntl-Bold", sans-serif;
    font-size: 2.6em;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4em;
    line-height: 1;
    letter-spacing: -0.02em;
}

.pillar-tagline {
    font-family: "SuisseIntl-Medium", sans-serif;
    color: #62CAB1;
    font-size: 1em;
    font-weight: 500;
    margin-bottom: 0.9em;
    font-style: italic;
    line-height: 1.4;
}

.pillar-desc {
    font-family: "SuisseIntl-Medium", sans-serif;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95em;
    line-height: 1.55;
    margin-bottom: 1.4em;
    flex-grow: 1;
}

.pillar-link {
    font-family: "WorkSans-SemiBold", "Work Sans", sans-serif;
    color: #62CAB1;
    font-size: 0.95em;
    font-weight: 600;
    margin-top: auto;
}

.pillar-card:hover .pillar-link {
    color: #fff;
}

@media (max-width: 991px) {
    .pillars-intro h2 {
        font-size: 2.4em;
    }
    .pillar-card h3 {
        font-size: 2.2em;
    }
    .pillars-home {
        padding: 40px 0 60px;
    }
}


/* =====================================================
   HOME REDESIGN — innovative hero & journey
   ===================================================== */

/* ---------- HERO MESH BACKGROUND ---------- */
.hero-home--mesh {
  background: radial-gradient(1200px 600px at 15% 12%, rgba(98, 202, 177, 0.35) 0%, rgba(98, 202, 177, 0) 60%),
              radial-gradient(900px 500px at 88% 38%, rgba(74, 138, 200, 0.22) 0%, rgba(74, 138, 200, 0) 65%),
              radial-gradient(700px 400px at 50% 90%, rgba(45, 133, 115, 0.30) 0%, rgba(45, 133, 115, 0) 65%),
              linear-gradient(180deg, #122533 0%, #1a3a3a 55%, #122e35 100%);
  color: #ffffff;
  padding-top: 150px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}
.hero-home--mesh .container { position: relative; z-index: 5; }

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(98, 202, 177, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(98, 202, 177, 0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: -1px -1px;
  mask-image: radial-gradient(ellipse at 50% 50%, rgba(0,0,0,0.55) 35%, rgba(0,0,0,0) 78%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, rgba(0,0,0,0.55) 35%, rgba(0,0,0,0) 78%);
  pointer-events: none;
  z-index: 1;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(75px);
  z-index: 0;
  opacity: 0.6;
  animation: orb-float 18s ease-in-out infinite;
}
.hero-orb--1 {
  width: 360px;
  height: 360px;
  background: #62CAB1;
  top: 8%;
  left: -120px;
  animation-delay: 0s;
}
.hero-orb--2 {
  width: 280px;
  height: 280px;
  background: #4a8ac8;
  top: 38%;
  right: -90px;
  animation-delay: -4s;
}
.hero-orb--3 {
  width: 220px;
  height: 220px;
  background: #cf5b4a;
  bottom: 6%;
  left: 35%;
  opacity: 0.35;
  animation-delay: -8s;
}
@keyframes orb-float {
  0%, 100% { transform: translate(0, 0); }
  33%      { transform: translate(20px, -25px); }
  66%      { transform: translate(-15px, 15px); }
}

/* ---------- EYEBROW ---------- */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(98, 202, 177, 0.10);
  border: 1px solid rgba(98, 202, 177, 0.45);
  color: rgba(255, 255, 255, 0.9);
  font-family: 'WorkSans-SemiBold', 'Work Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}
.hero-eyebrow-flag { font-size: 1.05rem; }

/* ---------- H1 ---------- */
.hero-home--mesh h1.hero-h1 {
  font-family: "SuisseIntl-Bold", "SuisseIntl-Medium", sans-serif;
  font-weight: 700;
  font-size: 4.8em;
  line-height: 0.98;
  color: #ffffff;
  margin: 0 0 28px;
  max-width: 100%;
  letter-spacing: -0.025em;
}
.hero-h1-flag {
  display: inline-block;
  font-size: 0.7em;
  vertical-align: middle;
  margin-right: 8px;
  filter: drop-shadow(0 6px 12px rgba(0, 51, 153, 0.4));
}
.hero-h1-line {
  display: inline;
}
.hero-h1-line--accent {
  background: linear-gradient(120deg, #62CAB1 0%, #a6e3d0 50%, #62CAB1 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmer 5s linear infinite;
  padding-right: 0.08em;
}
@keyframes shimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ---------- ROTATOR ---------- */
.hero-rotator {
  font-family: 'SuisseIntl-Medium', sans-serif;
  color: #ffffff;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 18px;
}
.hero-rot {
  position: relative;
  display: inline-block;
  height: 1.85em;
  width: 4ch;
  line-height: 1.3;
  vertical-align: -0.5em;
  overflow: hidden;
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  margin-left: 0.15em;
  margin-right: -0.15em;
}
.hero-rot-word {
  position: absolute;
  left: 0;
  top: 0.42em;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  font-family: 'SuisseIntl-Bold', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
  padding-right: 2px;
}
.hero-rot-word.is-active {
  opacity: 1;
  transform: translateY(0);
}
.hero-rot-word.is-leaving {
  opacity: 0;
  transform: translateY(-22px);
}
.hero-rot-word--llms      { color: #f7b8ad; }
.hero-rot-word--scaffolds { color: #7aafdc; }
.hero-rot-word--datasets  { color: #a6e3d0; }
.hero-rot-word--agents    { color: #e8c77a; }
.hero-rot-word--steering  { color: #c8b4e8; }
.hero-rot-word--bench     { color: #62CAB1; }

/* ---------- TAGLINE ---------- */
.hero-home--mesh .hero-tag {
  color: rgba(255, 255, 255, 0.82);
  font-family: 'SuisseIntl-Medium', sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  margin: 0 0 28px;
  max-width: 480px;
}
.hero-home--mesh .hero-tag strong { color: #62CAB1; }

/* ---------- CTA BUTTONS ---------- */
.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 32px;
}
.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: #62CAB1;
  color: #122533;
  border: 0;
  border-radius: 999px;
  font-family: 'WorkSans-SemiBold', 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: -0.01em;
  box-shadow: 0 12px 28px rgba(98, 202, 177, 0.35);
  transition: 0.25s ease;
}
.hero-cta-primary:hover {
  background: #fff;
  color: #122533;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(255, 255, 255, 0.18);
}
.hero-cta-primary svg { transition: 0.25s ease; }
.hero-cta-primary:hover svg { transform: translateX(4px); }

.hero-cta-ghost {
  display: inline-flex;
  align-items: center;
  padding: 14px 22px;
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-family: 'WorkSans-SemiBold', 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: 0.25s ease;
}
.hero-cta-ghost:hover {
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  text-decoration: none;
  border-color: #fff;
}

/* ---------- MINI STATS ---------- */
.hero-mini-stats {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}
.hero-mini-stat {
  display: flex;
  flex-direction: column;
  padding: 0;
}
.hero-mini-stat strong {
  font-family: 'SuisseIntl-Bold', sans-serif;
  font-size: 1.7rem;
  color: #62CAB1;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.hero-mini-stat strong.is-product {
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}
.hero-mini-stat span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---------- HERO TERMINAL ---------- */
.hero-terminal {
  background: rgba(8, 18, 25, 0.85);
  border: 1px solid rgba(98, 202, 177, 0.45);
  border-radius: 14px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(6px);
}
.hero-terminal-bar {
  background: rgba(0, 0, 0, 0.35);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid rgba(98, 202, 177, 0.18);
}
.hero-terminal-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}
.hero-terminal-dot--red    { background: #ff5f57; }
.hero-terminal-dot--yellow { background: #febc2e; }
.hero-terminal-dot--green  { background: #28c840; }
.hero-terminal-title {
  margin-left: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-family: 'Courier New', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.hero-terminal-body {
  margin: 0;
  padding: 22px 24px 24px;
  background: transparent;
  color: #d2e9e1;
  font-family: 'Courier New', 'SF Mono', monospace;
  font-size: 0.86rem;
  line-height: 1.7;
  white-space: pre-wrap;
  word-break: break-word;
}
.hero-terminal-body code { font-family: inherit; color: inherit; }
.hero-terminal-body .t-prompt { color: #62CAB1; font-weight: 700; }
.hero-terminal-body .t-cmd    { color: #ffffff; }
.hero-terminal-body .t-mute   { color: rgba(255, 255, 255, 0.45); }
.hero-terminal-body .t-acc    { color: #7dd6b8; font-weight: 700; }
.hero-terminal-body .t-good   { color: #62CAB1; }
.hero-terminal-body .t-blink {
  display: inline-block;
  background: #62CAB1;
  width: 0.55em;
  height: 1.1em;
  vertical-align: middle;
  animation: t-blink 1s steps(2, end) infinite;
}
@keyframes t-blink { 50% { opacity: 0; } }

/* hero floating chips */
.hero-floats {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.hero-float {
  background: rgba(98, 202, 177, 0.10);
  border: 1px solid rgba(98, 202, 177, 0.45);
  border-radius: 12px;
  padding: 10px 16px;
  color: #ffffff;
  font-family: 'WorkSans-SemiBold', 'Work Sans', sans-serif;
  display: flex;
  flex-direction: column;
  min-width: 120px;
}
.hero-float-label {
  color: #62CAB1;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-float strong {
  font-family: 'SuisseIntl-Bold', sans-serif;
  font-size: 1.2rem;
  color: #fff;
  font-weight: 700;
}
.hero-float--csi   { border-color: rgba(98, 202, 177, 0.6); }
.hero-float--alias { border-color: rgba(122, 175, 220, 0.55); }
.hero-float--alias .hero-float-label { color: #7aafdc; }

/* ---------- MARQUEE (arxiv strip) ---------- */
.hero-marquee {
  position: relative;
  z-index: 5;
  margin-top: 60px;
  overflow: hidden;
  border-top: 1px solid rgba(98, 202, 177, 0.18);
  border-bottom: 1px solid rgba(98, 202, 177, 0.18);
  background: rgba(0, 0, 0, 0.18);
}
.hero-marquee-track {
  display: flex;
  gap: 32px;
  padding: 14px 0;
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  animation: hero-marquee 80s linear infinite;
}
.hero-marquee-track span {
  flex-shrink: 0;
}
@keyframes hero-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- PILLARS: featured grid + colour codes ---------- */
.pillars-eyebrow {
  color: #62CAB1;
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.pillars-intro h2 em {
  font-style: normal;
  color: #62CAB1;
}

.pillars-grid--featured {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 30px;
}
.pillars-grid--featured .pillar-card--feature {
  grid-column: span 5;
}
@media (min-width: 992px) {
  .pillars-grid--featured {
    grid-template-columns: repeat(5, 1fr);
  }
  .pillars-grid--featured .pillar-card--feature {
    grid-column: span 5;
  }
  .pillars-grid--featured .pillar-card:not(.pillar-card--feature) {
    grid-column: span 1;
  }
}

.pillar-card-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 18px;
}
.pillar-card--feature h3 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 0.2em;
}
.pillar-card--feature {
  background: linear-gradient(135deg, rgba(207, 91, 74, 0.18), rgba(207, 91, 74, 0.05));
  border-color: rgba(207, 91, 74, 0.45);
}
.pillar-card--feature::before {
  background: #cf5b4a;
}
.pillar-card--feature .pillar-tagline { color: #f7b8ad; }
.pillar-chip {
  background: rgba(98, 202, 177, 0.16);
  border: 1px solid rgba(98, 202, 177, 0.5);
  color: #62CAB1;
  padding: 8px 16px;
  border-radius: 999px;
  font-family: 'WorkSans-SemiBold', sans-serif;
  font-size: 0.85rem;
  flex-shrink: 0;
  white-space: nowrap;
}
.pillar-chip--red {
  background: rgba(207, 91, 74, 0.16);
  border-color: rgba(207, 91, 74, 0.5);
  color: #f7b8ad;
}

.pillar-tag--red    { background: rgba(207, 91, 74, 0.18); color: #f7b8ad; }
.pillar-tag--blue   { background: rgba(122, 175, 220, 0.18); color: #b3d1ec; }
.pillar-tag--mint   { background: rgba(125, 214, 184, 0.18); color: #a6e3d0; }
.pillar-tag--gold   { background: rgba(232, 199, 122, 0.18); color: #f0d8a0; }
.pillar-tag--lilac  { background: rgba(200, 180, 232, 0.18); color: #c8b4e8; }
.pillar-tag--bench  { background: rgba(98, 202, 177, 0.18); color: #62CAB1; }

.pillar-scaffolds  { border-color: rgba(122, 175, 220, 0.45); }
.pillar-scaffolds::before  { background: #7aafdc; }
.pillar-scaffolds .pillar-tagline  { color: #b3d1ec; }
.pillar-datasets   { border-color: rgba(125, 214, 184, 0.45); }
.pillar-datasets::before   { background: #7dd6b8; }
.pillar-datasets .pillar-tagline   { color: #a6e3d0; }
.pillar-agents     { border-color: rgba(232, 199, 122, 0.45); }
.pillar-agents::before     { background: #e8c77a; }
.pillar-agents .pillar-tagline     { color: #f0d8a0; }
.pillar-steering   { border-color: rgba(200, 180, 232, 0.45); }
.pillar-steering::before   { background: #c8b4e8; }
.pillar-steering .pillar-tagline   { color: #c8b4e8; }
.pillar-bench      { border-color: rgba(98, 202, 177, 0.45); }
.pillar-bench::before      { background: #62CAB1; }
.pillar-bench .pillar-tagline      { color: #a6e3d0; }

@media (max-width: 991px) {
  .pillars-grid--featured { grid-template-columns: 1fr; }
  .pillars-grid--featured .pillar-card--feature { grid-column: span 1; }
  .pillar-card--feature h3 { font-size: 3rem; }
}

/* ---------- JOURNEY: timeline ---------- */
.journey-home {
  background: #122533;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.journey-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 360px at 20% 20%, rgba(207, 91, 74, 0.10) 0%, transparent 60%),
              radial-gradient(700px 360px at 80% 80%, rgba(98, 202, 177, 0.10) 0%, transparent 60%);
  pointer-events: none;
}
.journey-home .container { position: relative; z-index: 2; }
.journey-head {
  text-align: center;
  margin-bottom: 60px;
}
.journey-eyebrow { display: inline-block; }
.journey-title {
  font-family: 'SuisseIntl-Bold', sans-serif;
  font-weight: 700;
  font-size: 3.6em;
  color: #fff;
  line-height: 1.08;
  margin: 0.2em 0 0.3em;
  letter-spacing: -0.02em;
}
.journey-from {
  color: #f7b8ad;
}
.journey-to {
  background: linear-gradient(120deg, #62CAB1 0%, #a6e3d0 60%, #62CAB1 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 5s linear infinite;
  display: inline-block;
  padding-right: 0.08em;
}
.journey-sub {
  font-family: 'SuisseIntl-Medium', sans-serif;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto;
}

.journey-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin: 40px 0 60px;
}
.journey-track--six {
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.journey-line {
  position: absolute;
  top: 14px;
  left: 4%;
  right: 4%;
  height: 2px;
  background: linear-gradient(90deg,
    rgba(207, 91, 74, 0.5) 0%,
    rgba(207, 91, 74, 0.45) 35%,
    rgba(245, 200, 80, 0.55) 55%,
    rgba(98, 202, 177, 0.7) 100%);
  z-index: 1;
}
.journey-step {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 6px;
}
.journey-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #cf5b4a;
  margin: 0 auto 14px;
  border: 4px solid #122533;
  box-shadow: 0 0 0 2px rgba(207, 91, 74, 0.4);
  position: relative;
  z-index: 3;
}
.journey-step--start .journey-dot {
  background: #cf5b4a;
  box-shadow: 0 0 0 2px rgba(207, 91, 74, 0.5);
}
.journey-dot--bridge {
  background: #e8c77a;
  box-shadow: 0 0 0 2px rgba(232, 199, 122, 0.45);
}
.journey-dot--current {
  background: #62CAB1;
  box-shadow: 0 0 0 2px rgba(98, 202, 177, 0.45),
              0 0 0 8px rgba(98, 202, 177, 0.12);
  animation: journey-pulse 2.2s ease-in-out infinite;
}
@keyframes journey-pulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(98, 202, 177, 0.45), 0 0 0 8px rgba(98, 202, 177, 0.12); }
  50%      { box-shadow: 0 0 0 2px rgba(98, 202, 177, 0.55), 0 0 0 14px rgba(98, 202, 177, 0.18); }
}
.journey-year {
  color: rgba(255, 255, 255, 0.55);
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  margin-bottom: 4px;
}
.journey-step--current .journey-year { color: #62CAB1; }
.journey-step-name {
  color: #fff;
  font-family: 'SuisseIntl-Bold', sans-serif;
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.journey-step-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-family: 'SuisseIntl-Medium', sans-serif;
  margin-bottom: 12px;
  line-height: 1.45;
}
.journey-step-pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  font-family: 'WorkSans-SemiBold', sans-serif;
}
.journey-step-pill--robot {
  background: rgba(207, 91, 74, 0.18);
  color: #f7b8ad;
}
.journey-step-pill--bridge {
  background: rgba(232, 199, 122, 0.20);
  color: #f0d8a0;
}
.journey-step-pill--ai {
  background: rgba(98, 202, 177, 0.20);
  color: #62CAB1;
}

.journey-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.journey-col {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(207, 91, 74, 0.30);
  border-radius: 18px;
  padding: 30px;
}
.journey-col--ai {
  border-color: rgba(98, 202, 177, 0.4);
  background: rgba(98, 202, 177, 0.05);
}
.journey-col h3 {
  font-family: 'SuisseIntl-Bold', sans-serif;
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.journey-col p {
  color: rgba(255, 255, 255, 0.78);
  font-family: 'SuisseIntl-Medium', sans-serif;
  margin-bottom: 20px;
  line-height: 1.6;
}
.btn-explore--ai {
  background: rgba(98, 202, 177, 0.20);
  color: #62CAB1;
  border-color: rgba(98, 202, 177, 0.5);
}
.btn-explore--ai:hover {
  background: #62CAB1;
  color: #fff;
}

/* ---------- RESPONSIVE TUNING ---------- */
@media (max-width: 991px) {
  .hero-home--mesh h1.hero-h1 { font-size: 3.4em; }
  .hero-rotator { font-size: 1.15rem; }
  .hero-rot { min-width: 130px; }
  .hero-mini-stats { gap: 18px; }
  .hero-mini-stat strong { font-size: 1.3rem; }
  .hero-terminal-body { font-size: 0.78rem; padding: 16px 18px 18px; }

  .journey-title { font-size: 2.2em; }
  .journey-track { grid-template-columns: 1fr 1fr; gap: 24px; }
  .journey-line { display: none; }
  .journey-cols { grid-template-columns: 1fr; }
}
@media (max-width: 575px) {
  .hero-home--mesh { padding-top: 110px; }
  .hero-home--mesh h1.hero-h1 { font-size: 2.4em; }
  .hero-h1-flag { display: inline-block; font-size: 0.85em; }
  .hero-rotator { font-size: 1rem; }
  .hero-rot { min-width: 110px; }
  .hero-mini-stat strong { font-size: 1.1rem; }
  .hero-mini-stat span { font-size: 0.65rem; }
  .hero-terminal-body { font-size: 0.7rem; }
  .journey-track { grid-template-columns: 1fr; }
}


/* =====================================================
   PROOFS SECTION — replaces the badges-box
   ===================================================== */
.proofs-home {
  padding: 90px 0 60px;
  position: relative;
  z-index: 1;
}
.proofs-head {
  text-align: center;
  margin-bottom: 50px;
}
.proofs-head .pillars-eyebrow { display: inline-block; }
.proofs-title {
  font-family: 'SuisseIntl-Bold', sans-serif;
  font-weight: 700;
  font-size: 3.4rem;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0.2em 0 0.4em;
}
.proofs-title em {
  font-style: normal;
  background: linear-gradient(120deg, #62CAB1 0%, #a6e3d0 60%, #62CAB1 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 5s linear infinite;
  display: inline-block;
  padding-right: 0.08em;
}
.proofs-sub {
  color: rgba(255, 255, 255, 0.7);
  font-family: 'SuisseIntl-Medium', sans-serif;
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.55;
}
.proofs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.proof-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(98, 202, 177, 0.25);
  border-radius: 18px;
  padding: 28px 24px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
}
.proof-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #62CAB1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.proof-card:hover {
  transform: translateY(-4px);
  border-color: rgba(98, 202, 177, 0.55);
  box-shadow: 0 18px 40px rgba(10, 25, 32, 0.45);
}
.proof-card:hover::before { transform: scaleX(1); }

.proof-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(98, 202, 177, 0.14);
  color: #62CAB1;
  font-size: 1.05rem;
  margin-bottom: 22px;
}
.proof-stat {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(98, 202, 177, 0.18);
}
.proof-stat-num {
  font-family: 'SuisseIntl-Bold', sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1;
  color: #62CAB1;
  letter-spacing: -0.02em;
}
.proof-stat-lbl {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
  font-family: 'WorkSans-SemiBold', sans-serif;
}
.proof-card h3 {
  font-family: 'SuisseIntl-Bold', sans-serif;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.25;
}
.proof-card p {
  color: rgba(255, 255, 255, 0.78);
  font-family: 'SuisseIntl-Medium', sans-serif;
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 18px;
  flex-grow: 1;
}
.proof-card p strong { color: #fff; }
.proof-link {
  color: #62CAB1;
  font-family: 'WorkSans-SemiBold', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: auto;
}
.proof-link:hover { color: #fff; text-decoration: none; }

/* per-card accent strips */
.proof-card--llm      { border-color: rgba(207, 91, 74, 0.32); }
.proof-card--llm::before      { background: #cf5b4a; }
.proof-card--llm .proof-icon  { background: rgba(207, 91, 74, 0.16); color: #f7b8ad; }
.proof-card--llm .proof-stat-num { color: #f7b8ad; font-size: 1.9rem; letter-spacing: -0.01em; }
.proof-card--llm:hover { border-color: rgba(207, 91, 74, 0.55); }

.proof-card--steering { border-color: rgba(200, 180, 232, 0.32); }
.proof-card--steering::before { background: #c8b4e8; }
.proof-card--steering .proof-icon { background: rgba(200, 180, 232, 0.16); color: #c8b4e8; }
.proof-card--steering .proof-stat-num { color: #c8b4e8; }
.proof-card--steering:hover { border-color: rgba(200, 180, 232, 0.55); }

.proof-card--ctf      { border-color: rgba(232, 199, 122, 0.32); }
.proof-card--ctf::before      { background: #e8c77a; }
.proof-card--ctf .proof-icon  { background: rgba(232, 199, 122, 0.16); color: #f0d8a0; }
.proof-card--ctf .proof-stat-num { color: #f0d8a0; }
.proof-card--ctf:hover { border-color: rgba(232, 199, 122, 0.55); }

.proof-card--data     { border-color: rgba(125, 214, 184, 0.32); }
.proof-card--data::before     { background: #7dd6b8; }
.proof-card--data .proof-icon { background: rgba(125, 214, 184, 0.16); color: #a6e3d0; }
.proof-card--data .proof-stat-num { color: #a6e3d0; }
.proof-card--data:hover { border-color: rgba(125, 214, 184, 0.55); }

/* ---- PEDIGREE STRIP — full-width 5th card ---- */
.proof-card--pedigree {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: 44px;
  align-items: center;
  padding: 34px 38px;
  margin-top: 8px;
  background: linear-gradient(120deg, rgba(155, 196, 220, 0.12) 0%, rgba(37, 68, 80, 0.55) 65%, rgba(37, 68, 80, 0.35) 100%);
  border: 1px solid rgba(155, 196, 220, 0.32);
  text-decoration: none;
  color: inherit;
}
.proof-card--pedigree::before { background: #9bc4dc; }
.proof-card--pedigree:hover {
  border-color: rgba(155, 196, 220, 0.65);
  text-decoration: none;
  color: inherit;
}
.proof-pedigree-left {
  display: flex;
  flex-direction: column;
  padding-right: 20px;
  border-right: 1px solid rgba(155, 196, 220, 0.20);
}
.proof-pedigree-eyebrow {
  color: #9bc4dc;
  font-family: 'Courier New', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.proof-stat--big { border-bottom: none; padding-bottom: 0; margin-bottom: 16px; }
.proof-stat--big .proof-stat-num {
  font-size: 3.4rem;
  color: #9bc4dc;
}
.proof-stat--big .proof-stat-lbl { font-size: 0.74rem; }
.proof-pedigree-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: 'Courier New', monospace;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.03em;
}
.proof-pedigree-meta i { color: #9bc4dc; margin-right: 8px; width: 14px; }
.proof-pedigree-meta strong { color: #fff; font-weight: 600; }
.proof-pedigree-right h3 {
  font-family: 'SuisseIntl-Bold', sans-serif;
  font-size: 1.7rem;
  color: #fff;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
  line-height: 1.2;
}
.proof-pedigree-right p {
  font-family: 'SuisseIntl-Medium', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 16px;
}
.proof-pedigree-right p strong { color: #fff; }
.proof-pedigree-right p em {
  font-style: italic;
  color: #9bc4dc;
}
.proof-card--pedigree .proof-link {
  color: #9bc4dc;
}
.proof-card--pedigree:hover .proof-link {
  color: #fff;
}

@media (max-width: 991px) {
  .proofs-grid { grid-template-columns: repeat(2, 1fr); }
  .proofs-title { font-size: 2.2rem; }
  .proof-card--pedigree {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 26px;
  }
  .proof-pedigree-left {
    border-right: none;
    border-bottom: 1px solid rgba(155, 196, 220, 0.20);
    padding-right: 0;
    padding-bottom: 20px;
  }
  .proof-stat--big .proof-stat-num { font-size: 2.8rem; }
  .proof-pedigree-right h3 { font-size: 1.4rem; }
}
@media (max-width: 575px) {
  .proofs-grid { grid-template-columns: 1fr; }
  .proof-stat-num { font-size: 2rem; }
  .proof-card--pedigree { padding: 24px 22px; }
  .proof-stat--big .proof-stat-num { font-size: 2.4rem; }
  .proof-pedigree-right h3 { font-size: 1.25rem; }
}


/* =====================================================
   JOURNEY — six-column polish, col-tag, col-list
   ===================================================== */
.journey-col-tag {
  display: inline-block;
  font-family: 'Courier New', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.journey-col-tag--from {
  background: rgba(207, 91, 74, 0.16);
  color: #f7b8ad;
  border: 1px solid rgba(207, 91, 74, 0.35);
}
.journey-col-tag--to {
  background: rgba(98, 202, 177, 0.16);
  color: #62CAB1;
  border: 1px solid rgba(98, 202, 177, 0.45);
}
.journey-col h3 { font-size: 1.6rem; line-height: 1.25; }
.journey-col p strong { color: #fff; }
.journey-col p em { color: #62CAB1; font-style: italic; }
.journey-inline-link {
  color: #62CAB1;
  text-decoration: none;
  border-bottom: 1px dashed rgba(98, 202, 177, 0.55);
  transition: 0.2s ease;
}
.journey-inline-link:hover { color: #fff; border-bottom-color: #fff; text-decoration: none; }
.journey-col-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 22px;
}
.journey-col-list li {
  padding: 6px 0 6px 26px;
  position: relative;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'SuisseIntl-Medium', sans-serif;
  font-size: 0.92rem;
  line-height: 1.45;
}
.journey-col-list li i {
  position: absolute;
  left: 0;
  top: 10px;
  color: #62CAB1;
  font-size: 0.75rem;
}
.journey-col .journey-col-list li i { color: #cf5b4a; }
.journey-col--ai .journey-col-list li i { color: #62CAB1; }

/* journey step name tighter for 6-col layout */
.journey-track--six .journey-step-name { font-size: 0.95rem; }
.journey-track--six .journey-step-desc { font-size: 0.78rem; }
.journey-track--six .journey-step-pill { font-size: 0.65rem; }

@media (max-width: 1199px) {
  .journey-track--six { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .journey-track--six .journey-line { display: none; }
}
@media (max-width: 767px) {
  .journey-track--six { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 479px) {
  .journey-track--six { grid-template-columns: 1fr; }
}

/* 7-col layout */
.journey-track--seven {
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}
.journey-track--seven .journey-step-name { font-size: 0.9rem; }
.journey-track--seven .journey-step-name a { color: inherit; text-decoration: none; border-bottom: 1px dashed rgba(255,255,255,0.25); }
.journey-track--seven .journey-step-name a:hover { color: #62CAB1; border-bottom-color: #62CAB1; }
.journey-track--seven .journey-step-desc { font-size: 0.76rem; }
.journey-track--seven .journey-step-pill { font-size: 0.62rem; }

@media (max-width: 1199px) {
  .journey-track--seven { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .journey-track--seven .journey-line { display: none; }
}
@media (max-width: 767px) {
  .journey-track--seven { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 479px) {
  .journey-track--seven { grid-template-columns: 1fr; }
}


/* =====================================================
   HERO TERMINAL — asciinema-style live animation
   ===================================================== */
.hero-terminal--live { display: flex; flex-direction: column; }

.hero-terminal-rec {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ff5f57;
  font-family: 'Courier New', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  font-weight: 700;
}
.rec-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff5f57;
  box-shadow: 0 0 8px rgba(255, 95, 87, 0.7);
  animation: rec-pulse 1.2s ease-in-out infinite;
}
@keyframes rec-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.45; transform: scale(0.75); }
}

.hero-terminal-screen {
  height: 320px;
  overflow: hidden;
  position: relative;
  background: transparent;
}
.hero-terminal--live .hero-terminal-body {
  height: 100%;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(98, 202, 177, 0.35) transparent;
  margin: 0;
  scroll-behavior: smooth;
}
.hero-terminal--live .hero-terminal-body::-webkit-scrollbar { width: 6px; }
.hero-terminal--live .hero-terminal-body::-webkit-scrollbar-thumb { background: rgba(98, 202, 177, 0.35); border-radius: 3px; }

.t-cursor {
  display: inline-block;
  color: #62CAB1;
  font-family: 'Courier New', monospace;
  animation: t-cursor-blink 1s steps(2, end) infinite;
  margin-left: 1px;
  font-size: 0.86rem;
}
@keyframes t-cursor-blink { 50% { opacity: 0; } }

.hero-terminal-body .t-spin {
  color: #62CAB1;
  font-family: 'Courier New', monospace;
}
.hero-terminal-body .t-prog {
  color: #7dd6b8;
  font-family: 'Courier New', monospace;
  letter-spacing: -0.02em;
}
.hero-terminal-body .t-warn { color: #f0c270; font-weight: 700; }

.hero-terminal-status {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.42);
  border-top: 1px solid rgba(98, 202, 177, 0.2);
  font-family: 'Courier New', monospace;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.75);
  flex-wrap: wrap;
}
.t-status-item {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.t-status-key {
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.t-status-val {
  color: #62CAB1;
  font-weight: 700;
}
.t-status-time {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.55);
  font-family: 'Courier New', monospace;
  letter-spacing: 0.05em;
}

.hero-float--onprem { border-color: rgba(232, 199, 122, 0.55); }
.hero-float--onprem .hero-float-label { color: #f0c270; }

@media (max-width: 991px) {
  .hero-terminal-screen { height: 280px; }
  .hero-terminal-status { font-size: 0.66rem; gap: 10px; padding: 6px 12px; }
}
@media (max-width: 575px) {
  .hero-terminal-screen { height: 240px; }
  .hero-terminal-status { display: none; }
}


/* =====================================================
   HERO CAST — real asciinema playback
   ===================================================== */
.hero-terminal--cast { display: flex; flex-direction: column; }
.hero-cast-screen {
  position: relative;
  height: 460px;
  background: #0c171f;
  overflow: hidden;
}
.hero-cast-screen .asciinema-player-wrapper,
.hero-cast-screen .asciinema-player {
  background: transparent;
  width: 100%;
  height: 100%;
  outline: none;
}
/* hide native player controls/overlay — we use our own status bar */
.hero-cast-screen .ap-control-bar,
.hero-cast-screen .ap-overlay-start,
.hero-cast-screen .ap-overlay-loading {
  display: none !important;
}
.hero-cast-screen .ap-terminal {
  background: transparent !important;
}

/* Custom "alias" theme override — applied via theme="alias" + CSS vars
   asciinema-player 3.x reads palette CSS variables on .asciinema-theme-alias */
.asciinema-theme-alias {
  --term-color-foreground: #e0f1ea;
  --term-color-background: transparent;

  --term-color-0:  #122533;
  --term-color-1:  #cf5b4a;
  --term-color-2:  #62CAB1;
  --term-color-3:  #e8c77a;
  --term-color-4:  #7aafdc;
  --term-color-5:  #c8b4e8;
  --term-color-6:  #7dd6b8;
  --term-color-7:  #e0f1ea;

  --term-color-8:  #2a3f4a;
  --term-color-9:  #e07a6b;
  --term-color-10: #7dd6b8;
  --term-color-11: #f0d8a0;
  --term-color-12: #b3d1ec;
  --term-color-13: #d4c4ec;
  --term-color-14: #a6e3d0;
  --term-color-15: #ffffff;
}

/* status-bar link */
.t-status-link {
  color: #62CAB1;
  text-decoration: none;
  border-bottom: 1px dashed rgba(98, 202, 177, 0.4);
  transition: 0.2s ease;
}
.t-status-link:hover {
  color: #fff;
  border-bottom-color: #fff;
  text-decoration: none;
}

@media (max-width: 991px) {
  .hero-cast-screen { height: 380px; }
}
@media (max-width: 575px) {
  .hero-cast-screen { height: 300px; }
}


/* =====================================================
   HERO VISUAL — big robot illustration with orbits
   ===================================================== */
.hero-hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 580px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-hero-img {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero-hero-glow {
  display: none;
}
.hero-hero-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(98, 202, 177, 0.30);
  z-index: 2;
  pointer-events: none;
}
.hero-hero-orbit--1 {
  inset: 5%;
  animation: hero-hero-spin 32s linear infinite;
}
.hero-hero-orbit--2 {
  inset: -3%;
  border-color: rgba(98, 202, 177, 0.16);
  animation: hero-hero-spin 56s linear reverse infinite;
}
@keyframes hero-hero-spin {
  from { transform: rotate(0); }
  to   { transform: rotate(360deg); }
}

@media (max-width: 991px) {
  .hero-hero-visual { max-width: 460px; aspect-ratio: 1 / 1; }
}
@media (max-width: 575px) {
  .hero-hero-visual { max-width: 320px; }
}


/* =====================================================
   LEADERBOARD STRIP — index reinforces "EU lead"
   ===================================================== */
.leaderboard-home {
  padding: 30px 0 80px;
  position: relative;
  z-index: 1;
}
.leaderboard-home .proofs-head {
  text-align: center;
  margin-bottom: 40px;
}
.leaderboard-home .pillars-eyebrow {
  display: inline-block;
}
.leaderboard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.lb-card {
  background: rgba(37, 68, 80, 0.5);
  border: 1px solid rgba(98, 202, 177, 0.32);
  border-radius: 18px;
  padding: 26px 22px 22px;
  position: relative;
  transition: 0.3s ease;
}
.lb-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: #62CAB1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.lb-card:hover {
  transform: translateY(-4px);
  border-color: rgba(98, 202, 177, 0.55);
  box-shadow: 0 18px 40px rgba(10, 25, 32, 0.45);
}
.lb-card:hover::before { transform: scaleX(1); }
.lb-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(98, 202, 177, 0.16);
  color: #62CAB1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  margin-bottom: 16px;
}
.lb-card h3 {
  font-family: 'SuisseIntl-Bold', sans-serif;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 8px;
}
.lb-stat {
  color: rgba(255, 255, 255, 0.85);
  font-family: 'SuisseIntl-Medium', sans-serif;
  font-size: 1rem;
  margin-bottom: 10px;
}
.lb-stat strong {
  color: #62CAB1;
  font-family: 'SuisseIntl-Bold', sans-serif;
  font-size: 1.45rem;
  letter-spacing: -0.01em;
}
.lb-stat small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  font-weight: 400;
}
.lb-card p {
  color: rgba(255, 255, 255, 0.72);
  font-family: 'SuisseIntl-Medium', sans-serif;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}
.leaderboard-foot {
  text-align: center;
  margin-top: 26px;
}

@media (max-width: 991px) {
  .leaderboard-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .leaderboard-grid { grid-template-columns: 1fr; }
}
