/* =========================================================
   SITE HEADER
========================================================= */

.site-header {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    z-index: 1000;

    height: 80px;

    background: #ffffff;

    border-bottom: 1px solid #eeeeee;

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

/* =========================================================
   HEADER CONTAINER
========================================================= */

.site-header__container {
    width: min(1240px, calc(100% - 64px));

    height: 100%;

    margin: 0 auto;

    display: flex;
    align-items: center;
}


/* =========================================================
   BRAND
========================================================= */

.site-header__brand {
    display: flex;
    align-items: center;

    gap: 18px;

    flex-shrink: 0;

    text-decoration: none;
}


/* =========================================================
   LOGO
========================================================= */

.site-header__logo {
    display: block;

    width: 180px;
    height: auto;

    object-fit: contain;
}


/* =========================================================
   ENTERPRISE DEV
========================================================= */

.site-header__label {
    display: flex;
    align-items: center;

    min-height: 28px;

    padding-left: 18px;

    border-left: 1px solid rgba(255, 255, 255, 0.18);

    color: rgba(255, 255, 255, 0.76);

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 0.08em;
    line-height: 1;

    text-transform: uppercase;

    white-space: nowrap;
}


/* =========================================================
   NAVIGATION
========================================================= */

.site-header__nav {
    display: flex;
    align-items: center;

    gap: 30px;

    margin-left: 72px;
}


/* =========================================================
   NAVIGATION LINK
========================================================= */

.site-header__link {
    position: relative;

    display: inline-flex;
    align-items: center;

    padding: 10px 0;

    color: rgba(255, 255, 255, 0.74);

    font-size: 15px;
    font-weight: 600;

    line-height: 1.2;

    text-decoration: none;

    white-space: nowrap;

    transition: color 0.25s ease;
}


/* =========================================================
   NAVIGATION HOVER / ACTIVE
========================================================= */

.site-header__link:hover,
.site-header__link--active {
    color: #ffffff;
}


/* =========================================================
   ACTIVE NAVIGATION LINE
========================================================= */

.site-header__link--active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: -7px;

    height: 2px;

    background: #D32F2F;

    border-radius: 999px;
}


/* =========================================================
   HEADER ACTIONS
========================================================= */

.site-header__actions {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-left: auto;

    flex-shrink: 0;
}


/* =========================================================
   REQUEST A QUOTE
========================================================= */

.site-header__quote {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 44px;

    padding: 0 20px;

    background: #D32F2F;

    border: 1px solid #D32F2F;

    border-radius: 6px;

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;

    line-height: 1;

    text-decoration: none;

    white-space: nowrap;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}


/* =========================================================
   QUOTE HOVER
========================================================= */

.site-header__quote:hover {
    background: #B71C1C;

    border-color: #B71C1C;

    transform: translateY(-1px);
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.site-header__menu {
    display: none;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    width: 42px;
    height: 42px;

    padding: 8px;

    background: transparent;

    border: 1px solid rgba(255, 255, 255, 0.16);

    border-radius: 6px;

    cursor: pointer;
}


/* =========================================================
   HAMBURGER LINES
========================================================= */

.site-header__menu span {
    display: block;

    width: 20px;
    height: 2px;

    margin: 2.5px 0;

    background: #ffffff;

    border-radius: 999px;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: calc(100vh - 80px);

    display: flex;
    align-items: center;

    background: #0F172A;

    overflow: hidden;
}


/* =========================================================
   HERO CONTAINER
========================================================= */

.hero__container {
    width: min(1240px, calc(100% - 64px));

    margin: 0 auto;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero__content {
    max-width: 850px;

    padding: 80px 0;
}


/* =========================================================
   HERO BADGES
========================================================= */

.hero__badges {
    display: flex;
    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 28px;
}


.hero__badge {
    display: inline-flex;
    align-items: center;

    min-height: 32px;

    padding: 0 13px;

    border: 1px solid rgba(211, 47, 47, 0.5);

    border-radius: 999px;

    color: #ffffff;

    background: rgba(211, 47, 47, 0.08);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}


.hero__badge--certified {
    border-color: rgba(255, 255, 255, 0.16);

    background: rgba(255, 255, 255, 0.04);

    color: rgba(255, 255, 255, 0.72);
}


/* =========================================================
   HERO TITLE
========================================================= */

.hero__title {
    max-width: 850px;

    margin: 0;

    color: #ffffff;

    font-family: "Plus Jakarta Sans", "Inter", sans-serif;

    font-size: clamp(42px, 5vw, 72px);

    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -0.04em;
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.hero__description {
    max-width: 700px;

    margin: 28px 0 0;

    color: rgba(255, 255, 255, 0.68);

    font-family: "Inter", sans-serif;

    font-size: 17px;

    font-weight: 400;

    line-height: 1.75;
}


/* =========================================================
   HERO ACTIONS
========================================================= */

.hero__actions {
    display: flex;
    align-items: center;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 36px;
}


/* =========================================================
   HERO BUTTON
========================================================= */

.hero__button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 0 22px;

    border-radius: 6px;

    font-family: "Inter", sans-serif;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    white-space: nowrap;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}


.hero__button:hover {
    transform: translateY(-1px);
}


/* =========================================================
   PRIMARY HERO BUTTON
========================================================= */

.hero__button--primary {
    background: #D32F2F;

    border: 1px solid #D32F2F;

    color: #ffffff;
}


.hero__button--primary:hover {
    background: #B71C1C;

    border-color: #B71C1C;
}


/* =========================================================
   SECONDARY HERO BUTTON
========================================================= */

.hero__button--secondary {
    background: transparent;

    border: 1px solid rgba(255, 255, 255, 0.2);

    color: #ffffff;
}


.hero__button--secondary:hover {
    background: rgba(255, 255, 255, 0.06);

    border-color: rgba(255, 255, 255, 0.35);
}
/* =========================================================
   METRICS
========================================================= */

.metrics {
    position: relative;

    background: #0F172A;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}


.metrics__container {
    width: min(1240px, calc(100% - 64px));

    min-height: 150px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    align-items: center;
}


.metrics__item {
    min-height: 90px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 20px 32px;

    text-align: center;

    border-right: 1px solid rgba(255, 255, 255, 0.08);
}


.metrics__item:last-child {
    border-right: none;
}


/* =========================================================
   METRIC VALUE
========================================================= */

.metrics__value {
    color: #FFFFFF;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 34px;

    font-weight: 800;

    line-height: 1;

    letter-spacing: -0.03em;
}


/* =========================================================
   METRIC LABEL
========================================================= */

.metrics__label {
    margin-top: 10px;

    color: rgba(255, 255, 255, 0.55);

    font-family: "Inter", sans-serif;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}

/* =========================================================
   FEATURE / DEVOPS SECTION
========================================================= */

.feature {
    position: relative;

    background: #0F172A;

    padding: 96px 0;
}


.feature__container {
    width: min(1240px, calc(100% - 64px));

    margin: 0 auto;
}


.feature__visual {
    position: relative;

    width: 100%;

    min-height: 520px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 12px;

    background: #111827;
}


.feature__image {
    width: 100%;
    height: 520px;

    display: block;

    object-fit: cover;
}


/* =========================================================
   FEATURE OVERLAY
========================================================= */

.feature__overlay {
    position: absolute;

    left: 32px;
    bottom: 32px;

    display: flex;
    flex-direction: column;

    max-width: 420px;

    padding: 20px 24px;

    background: rgba(9, 14, 28, 0.88);

    border: 1px solid rgba(255, 255, 255, 0.1);

    border-radius: 8px;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


.feature__eyebrow {
    color: #D32F2F;

    font-family: "Inter", sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.1em;

    text-transform: uppercase;
}


.feature__title {
    margin-top: 8px;

    color: #FFFFFF;

    font-family: "Plus Jakarta Sans", sans-serif;

    font-size: 20px;

    font-weight: 700;

    line-height: 1.3;
}
/* =========================================================
   CURRENT i-BnB HEADER
   Applies to the header used in the current HTML
========================================================= */

.site-header {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    z-index: 1000;

    height: 80px;

    background: #ffffff;

    border-bottom: none;

    box-shadow: none;

    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}


/* =========================================================
   HEADER INNER
========================================================= */

.header-inner {
    width: min(1240px, calc(100% - 64px));

    height: 80px;

    margin: 0 auto;
    padding: 0;

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


/* =========================================================
   BRAND
========================================================= */

.brand {
    display: flex;
    align-items: center;

    gap: 12px;

    margin: 0;
    padding: 0;

    flex-shrink: 0;

    text-decoration: none;
}


/* Logo */

.brand-logo {
    width: auto;
    height: 54px;
    display: block;
    object-fit: contain;
}


/* Brand text */

.brand-text {
    display: flex;
    flex-direction: column;

    justify-content: center;

    margin: 0;
}

.brand-word {
    color: #171717;

    font-family: "Space Grotesk", sans-serif;

    font-size: 23px;
    font-weight: 700;

    line-height: 1.1;
}

.brand-sub {
    margin-top: 4px;

    color: #666666;

    font-family: "Inter", sans-serif;

    font-size: 10.5px;
    font-weight: 600;

    letter-spacing: 0.06em;

    line-height: 1;

    text-transform: uppercase;
}


/* =========================================================
   HEADER ACTIONS
========================================================= */

.header-actions {
    display: flex;
    align-items: center;

    gap: 22px;

    margin-left: auto;

    flex-shrink: 0;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.desktop-nav {
    display: flex;
    align-items: center;

    gap: 30px;

    margin: 0;
    padding: 0;
}

.desktop-nav a {
    position: relative;

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

    height: 80px;

    padding: 0;
    margin: 0;

    color: #5f5f5f;

    font-family: "Inter", sans-serif;

    font-size: 14px;
    font-weight: 600;

    line-height: 1;

    text-decoration: none;

    white-space: nowrap;

    transition: color 0.2s ease;
}


/* Hover */

.desktop-nav a:hover {
    color: #D32F2F;
}


/* Active page */

.desktop-nav a.active {
    color: #D32F2F;
}


/* =========================================================
   NAVIGATION UNDERLINE
========================================================= */

/* Remove any underline created by other CSS */

.desktop-nav a::after {
    content: none;
}


/* Show underline ONLY for active page */

.desktop-nav a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: 18px;

    height: 2px;

    background: #D32F2F;

    border-radius: 999px;
}


/* =========================================================
   QUOTE BUTTON
========================================================= */

.quote-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 6px;

    width: 92px;
    height: 42px;

    padding: 0;
    margin: 0;

    background: #D32F2F;

    border: 1px solid #D32F2F;

    border-radius: 9px;

    color: #ffffff;

    font-family: "Inter", sans-serif;

    font-size: 13px;
    font-weight: 700;

    line-height: 1;

    text-decoration: none;

    white-space: nowrap;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.quote-btn:hover {
    background: #B71C1C;

    border-color: #B71C1C;

    transform: translateY(-1px);
}

.quote-btn .material-symbols-outlined {
    font-size: 17px;
}


/* =========================================================
   MOBILE MENU
========================================================= */

.menu-toggle {
    display: none;
}
/* =========================================================
   LIVE SPRINT ROOM
========================================================= */

.live-tile {
    position: relative;

    overflow: hidden;

    border-radius: 18px;

    background: #17110f;

    border: 1px solid rgba(211, 47, 47, 0.16);

    box-shadow:
        0 18px 45px rgba(23, 17, 15, 0.14);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.live-tile:hover {
    transform: translateY(-3px);

    box-shadow:
        0 24px 55px rgba(23, 17, 15, 0.18);
}


/* Background pattern */

.live-tile-pattern {
    position: absolute;

    inset: 0;

    pointer-events: none;

    opacity: 0.3;

    background-image:
        radial-gradient(
            rgba(255, 255, 255, 0.12) 1px,
            transparent 1px
        );

    background-size: 18px 18px;
}


/* i-BnB mark */

.live-tile-mark {
    position: absolute;

    top: 18px;
    right: 20px;

    z-index: 2;

    color: rgba(255, 255, 255, 0.38);

    font-family: "Space Grotesk", sans-serif;

    font-size: 12px;
    font-weight: 700;
}


/* Main live badge */

.live-tag {
    position: relative;

    z-index: 2;

    display: inline-flex;

    align-items: center;

    gap: 7px;

    margin-top: 82px;
    margin-left: 20px;

    padding: 7px 11px;

    border-radius: 999px;

    background: #D32F2F;

    color: #ffffff;

    font-family: "Inter", sans-serif;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.04em;

    text-transform: uppercase;
}


/* Live dot */

.live-dot {
    width: 6px;
    height: 6px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #ffffff;

    animation: liveDotPulse 1.8s ease-in-out infinite;
}


/* Caption */

.live-caption {
    position: relative;

    z-index: 2;

    max-width: 340px;

    margin: 14px 20px 24px;

    color: #ffffff;

    font-family: "Space Grotesk", sans-serif;

    font-size: 18px;

    font-weight: 600;

    line-height: 1.35;
}


/* Pulse */

@keyframes liveDotPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.45;
        transform: scale(1.25);
    }
}


@media (prefers-reduced-motion: reduce) {

    .live-dot {
        animation: none;
    }

    .live-tile {
        transition: none;
    }
}
/* =========================================================
   i-BnB INDUSTRY TICKER — FINAL
========================================================= */

.marquee-section {
    position: relative;

    width: 100%;
    height: 58px;

    overflow: hidden;

    display: flex;
    align-items: center;

    background: #ffffff;

    border-top: 1px solid #eee5e2;
    border-bottom: 1px solid #eee5e2;
}


/* Moving track */

.marquee-track {
    display: flex;
    align-items: center;

    width: max-content;
    min-width: max-content;

    margin: 0;
    padding: 0;

    transform: translateX(120px);

    animation: industryTicker 30s linear infinite;

    will-change: transform;
}


/* Each complete set */

.marquee-group {
    display: flex;
    align-items: center;

    flex-shrink: 0;

    gap: 42px;

    margin: 0;
    padding: 0 42px 0 0;
}


/* Industry names */

.marquee-group span {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    flex-shrink: 0;

    margin: 0;
    padding: 0;

    color: #625a57;

    font-family: "Inter", sans-serif;

    font-size: 13px;
    font-weight: 600;

    line-height: 1;

    white-space: nowrap;
}


/* Red dot */

.marquee-group span i {
    display: block;

    width: 5px;
    height: 5px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #D32F2F;
}


/* =========================================================
   CONTINUOUS LEFT MOVEMENT
========================================================= */

@keyframes industryTicker {

    0% {
        transform: translateX(120px);
    }

    100% {
        transform: translateX(calc(-50% + 120px));
    }

}

/* =========================================================
   EDGE FADE
========================================================= */

.marquee-section::before,
.marquee-section::after {
    content: "";

    position: absolute;

    top: 0;
    bottom: 0;

    width: 75px;

    z-index: 10;

    pointer-events: none;
}

.marquee-section::before {
    left: 0;

    background:
        linear-gradient(
            to right,
            #ffffff 0%,
            rgba(255, 255, 255, 0) 100%
        );
}

.marquee-section::after {
    right: 0;

    background:
        linear-gradient(
            to left,
            #ffffff 0%,
            rgba(255, 255, 255, 0) 100%
        );
}


/* =========================================================
   PAUSE ON HOVER
========================================================= */

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


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .marquee-track {
        animation: none;

        transform: translateX(0);
    }

}


/* =========================================================
   CAPABILITY CARD HOVER
========================================================= */

.capability-card {
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {

    .capability-card:hover {
        transform: translateY(-4px);

        border-color: rgba(211, 47, 47, 0.35);

        box-shadow:
            0 14px 30px rgba(23, 17, 15, 0.09);
    }

}

@media (prefers-reduced-motion: reduce) {

    .capability-card {
        transition: none;
    }

}
