/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

body {
    font-family: 'Noto Sans', sans-serif;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 1rem;
}

.footer .icon-link {
    font-size: 25px;
    color: #000;
}

.link-block a {
    margin-top: 5px;
    margin-bottom: 5px;
}

.dnerf {
    font-variant: small-caps;
}

.teaser .hero-body {
    padding-top: 0;
    padding-bottom: 3rem;
}

.teaser {
    font-family: 'Google Sans', sans-serif;
}

.publication-title {
}

.publication-banner {
    max-height: parent;
}

.publication-banner video {
    position: relative;
    left: auto;
    top: auto;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    -o-object-fit: fit;
    object-fit: fit;
}

.publication-header .hero-body {
}

.publication-title {
    font-family: 'Google Sans', sans-serif;
}

.hero-header {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.hero-logo {
    max-width: 180px;
    height: auto;
    display: block;
    margin: 0 auto;
    -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    -webkit-filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.hero-logo:hover {
    -webkit-transform: scale(1.1) rotate(5deg);
    -ms-transform: scale(1.1) rotate(5deg);
    transform: scale(1.1) rotate(5deg);
    -webkit-filter: drop-shadow(0 12px 24px rgba(0, 123, 255, 0.4));
    filter: drop-shadow(0 12px 24px rgba(0, 123, 255, 0.4));
}

/* Cool tooltip for the logo */
.hero-logo-column {
    position: relative;
}

.hero-logo-tooltip {
    position: absolute;
    top: 110%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-10px) scale(0.9);
    -ms-transform: translateX(-50%) translateY(-10px) scale(0.9);
    transform: translateX(-50%) translateY(-10px) scale(0.9);
    background: -o-linear-gradient(315deg, #667eea 0%, #764ba2 100%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-size: 0.85rem;
    line-height: 1.5;
    width: 320px;
    z-index: 1000;
    -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: block;
}

.hero-logo-tooltip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 12px;
    z-index: -1;
}

.hero-logo-tooltip::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -8px;
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent #667eea transparent;
    -webkit-filter: drop-shadow(0 -2px 4px rgba(0, 0, 0, 0.1));
    filter: drop-shadow(0 -2px 4px rgba(0, 0, 0, 0.1));
}

.hero-logo-column:hover .hero-logo-tooltip {
    opacity: 1 !important;
    visibility: visible !important;
    -webkit-transform: translateX(-50%) translateY(0) scale(1) !important;
    -ms-transform: translateX(-50%) translateY(0) scale(1) !important;
    transform: translateX(-50%) translateY(0) scale(1) !important;
    display: block !important;
}

/* Add a subtle glow effect to the logo container on hover */
.hero-logo-column::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: -o-radial-gradient(circle, rgba(0, 123, 255, 0.2) 0%, transparent 70%);
    background: radial-gradient(circle, rgba(0, 123, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0);
    -ms-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.hero-logo-column:hover::before {
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}

.hero-logo-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.hero-text-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.hero-text-column .publication-title {
    white-space: nowrap;
}

.hero-title {
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
}

.hero--landing {
    padding-bottom: 1rem;
}

.hero--overview {
    padding-top: 1.25rem;
}

.hero-overview__grid {
    margin-top: 2rem;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.hero-overview__summary .content p + p {
    margin-top: 1.25rem;
}

.cta-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.cta-group .button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
    border-radius: 999px;
    font-weight: 600;
    -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    -webkit-transition: -webkit-transform 120ms ease, -webkit-box-shadow 120ms ease;
    transition: -webkit-transform 120ms ease, -webkit-box-shadow 120ms ease;
    -o-transition: transform 120ms ease, box-shadow 120ms ease;
    transition: transform 120ms ease, box-shadow 120ms ease;
    transition: transform 120ms ease, box-shadow 120ms ease, -webkit-transform 120ms ease, -webkit-box-shadow 120ms ease;
}

.cta-group .button i {
    font-size: 0.95rem;
}

.cta-group .button:hover {
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
}

.button--arxiv {
    background: #f14668;
    color: #fff;
}

.button--github {
    background: #171515;
    color: #fff;
}

.button--dataset {
    background: #ffce4b;
    color: #1f2937;
}

.hero-primary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.hero-tldr {
    width: 100%;
    border-radius: 18px;
    -webkit-box-shadow: 0 12px 28px rgba(17, 24, 39, 0.12);
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.12);
}

.hero-tldr .card-content {
    padding: 1.75rem;
}

.hero-tldr__title {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 1.25rem;
}

.hero-tldr__list {
    margin-left: 1rem;
    margin-bottom: 1.5rem;
}

.hero-tldr__list li + li {
    margin-top: 0.75rem;
}

.hero-tldr__models {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.85rem;
}

.hero-tldr__models-title {
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #6b7280;
}

.hero-pill-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hero-pill {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 0.85rem;
    font-weight: 600;
}

.hero-pill i {
    font-size: 0.9rem;
}

.hero-chart {
    margin-top: 3rem;
    border-radius: 18px;
    -webkit-box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
}

.hero-chart .card-content {
    padding: 2rem;
}

.hero-chart__title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.hero-chart__text {
    margin-bottom: 1.5rem;
    color: #4b5563;
}

.chart-toolbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 1rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.chart-selector {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    border-radius: 999px;
    background: #f3f4f6;
    padding: 0.4rem;
    gap: 0.4rem;
}

.chart-selector__button {
    border: none;
    background: transparent;
    color: #1f2937;
    font-weight: 600;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    cursor: pointer;
    -webkit-transition: background 120ms ease, color 120ms ease;
    -o-transition: background 120ms ease, color 120ms ease;
    transition: background 120ms ease, color 120ms ease;
}

.chart-selector__button.is-active,
.chart-selector__button[aria-pressed='true'] {
    background: #111827;
    color: #fff;
}

.chart-selector__button:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

.chart-display {
    margin-top: 1.75rem;
}

.chart-figure {
    margin: 0;
}

.chart-figure img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(17, 24, 39, 0.06);
}

.chart-examples {
    margin-top: 1.75rem;
}

.chart-examples__button {
    border: none;
    background: #2563eb;
    color: #fff;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    cursor: pointer;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.4rem;
    -webkit-transition: background 120ms ease;
    -o-transition: background 120ms ease;
    transition: background 120ms ease;
}

.chart-examples__button:hover {
    background: #1d4ed8;
}

.chart-examples__icon {
    font-size: 1.05rem;
}

.publication-authors {
    font-family: 'Google Sans', sans-serif;
}

.publication-authors.authors-inline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 0.35rem;
}

.publication-authors.authors-inline .author-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    white-space: nowrap;
}

.publication-authors.authors-inline .author-block:not(:last-child)::after {
    content: '·';
    margin-left: 0.35rem;
    color: inherit;
}

.publication-venue {
    color: #555;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-weight: bold;
}

.publication-awards {
    color: #ff3860;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-weight: bolder;
}

.publication-authors {
}

.publication-authors a {
    color: hsl(204, 86%, 53%) !important;
}

.publication-authors a:hover {
    text-decoration: underline;
}

.author-block {
    display: inline-block;
}

.publication-banner img {
}

.publication-authors {
    /*color: #4286f4;*/
}

.publication-video {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;

    overflow: hidden;
    border-radius: 10px !important;
}

.publication-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.publication-body img {
}

.results-carousel {
    overflow: hidden;
}

.results-carousel .item {
    margin: 5px;
    overflow: hidden;
    padding: 20px;
    font-size: 0;
}

.results-carousel video {
    margin: 0;
}

.slider-pagination .slider-page {
    background: #000000;
}

.eql-cntrb {
    font-size: smaller;
}

.video-wrapper {
    position: relative;
    width: 100%;
    /* Preserve aspect ratio of the video */
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}
.video-wrapper iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    height: 90%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.carousel-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.carousel-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

@media (max-width: 992px) {
    .hero-header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
    }

    .hero-logo {
        max-width: 140px;
        margin-bottom: 1.5rem;
    }

    .hero-logo-tooltip {
        width: 280px;
        font-size: 0.8rem;
        padding: 0.85rem 1rem;
    }

    .hero-text-column {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .hero-text-column .publication-title {
        white-space: normal;
    }

    .hero-overview__grid {
        margin-top: 2rem;
    }

    .cta-group {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .hero-tldr .card-content {
        padding: 1.5rem;
    }

    .hero-chart .card-content {
        padding: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .publication-authors.authors-inline {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }

    .hero-overview__summary {
        padding-right: 2rem;
    }
}

.tldr-callout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
    padding: 0em;
    margin-top: 0.75rem;
    border-radius: 18px;
    background: none;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.tldr-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.85rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    color: #111827;
}

.tldr-badge {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: #1f2937;
    color: #fff;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    font-size: 0.75rem;
    line-height: 1;
    -webkit-box-shadow: 0 8px 18px rgba(17, 24, 39, 0.16);
    box-shadow: 0 8px 18px rgba(17, 24, 39, 0.16);
}

.tldr-lede {
    margin: 0;
    font-size: 1.13rem;
    font-weight: 600;
    line-height: 1.45;
    color: #0f172a;
}

.tldr-failures {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -ms-grid;
    display: grid;
    gap: 0.85rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    justify-items: center;
    text-align: center;
}

.failure-item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.25rem;
    color: #111827;
}

.failure-title {
    font-weight: 600;
    color: #0f172a;
    margin: 0;
}

.failure-desc {
    font-size: 0.95rem;
    line-height: 1.45;
    color: #475569;
}

.read-more-lead,
.read-more-cta {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #334155;
    margin: 0 auto;
    max-width: 640px;
}

.read-more-grid {
    display: -ms-grid;
    display: grid;
    gap: 1.75rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    margin-top: 2rem;
}

.read-more-card {
    background: -o-linear-gradient(295deg, rgba(241, 245, 249, 0.85), #ffffff);
    background: linear-gradient(155deg, rgba(241, 245, 249, 0.85), #ffffff);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    padding: 1.75rem;
    -webkit-box-shadow: 0 18px 32px rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.08);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
    -webkit-transition: border-color 0.22s ease, -webkit-transform 0.22s ease, -webkit-box-shadow 0.22s ease;
    transition: border-color 0.22s ease, -webkit-transform 0.22s ease, -webkit-box-shadow 0.22s ease;
    -o-transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, -webkit-transform 0.22s ease,
        -webkit-box-shadow 0.22s ease;
}

.read-more-icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.1);
    color: #1e3a8a;
    font-size: 1.35rem;
    -webkit-box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.15), 0 10px 18px rgba(30, 64, 175, 0.08);
    box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.15), 0 10px 18px rgba(30, 64, 175, 0.08);
}

.read-more-card h3 {
    font-size: 1.12rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
}

.read-more-card p {
    margin: 0;
    color: #475569;
    line-height: 1.6;
    font-size: 0.98rem;
}

.read-more-card:hover {
    -webkit-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);
    -webkit-box-shadow: 0 22px 40px rgba(30, 64, 175, 0.18);
    box-shadow: 0 22px 40px rgba(30, 64, 175, 0.18);
    border-color: rgba(37, 99, 235, 0.25);
}

.read-more-secondary {
    border: 1px solid rgba(15, 23, 42, 0.18);
}

.read-more-secondary:hover {
    border-color: rgba(37, 99, 235, 0.4);
}

/* Dataset call-to-action */
.dataset-cta {
    margin: 2.5rem 0;
    text-align: center;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    -webkit-box-shadow: 0 12px 28px rgba(37, 99, 235, 0.12);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.12);
}

.dataset-cta__lead {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.dataset-cta .button {
    font-weight: 600;
}

@media (max-width: 768px) {
    .tldr-callout {
        padding: 1.2rem 1.3rem;
        gap: 0.85rem;
    }

    .tldr-failures {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .failure-item {
        padding-left: 0;
    }

    .read-more-grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        margin-top: 1.5rem;
    }

    .dataset-cta {
        padding: 1.5rem 1rem;
    }
}
