@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --card-height: 550px;
    --transition-speed: 0.7s;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #ffffff;
    color: #111;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* --- Header Styling --- */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    /* padding: 24px 0; */
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.header-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}


.logo-text {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* --- Button Styling --- */
.btn-blue {
    background-color: #001eff;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: background-color 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-blue:hover {
    background-color: #001eff;
}

.btn-outline {
    background-color: transparent;
    color: #111;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 6px;
    border: 1px solid #d1d5db;
    font-weight: 600;
    font-size: 15px;
    transition: border-color 0.2s ease;
    cursor: pointer;
}

.btn-outline:hover {
    border-color: #111;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.cta-h2-ready {
    color: #ffffff;
}

/* --- TEMP HERO CAPTURE START: remove this block to revert hero email capture --- */
.temp-hero-capture {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 620px;
    gap: 12px;
    margin-top: 20px;
    margin-bottom: 20px;
    scroll-margin-top: 110px;
}

.temp-hero-capture-form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: 100%;
}

.temp-hero-capture-row {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.temp-hero-capture-row-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.temp-hero-capture-row[hidden] {
    display: none;
}

.temp-hero-capture-input {
    flex: 1;
    min-width: 0;
    height: 52px;
    padding: 0 18px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font: inherit;
    font-size: 16px;
    color: #111;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.temp-hero-capture-input.is-locked {
    background: #edf4ff;
    border-color: #cbd5e1;
}

.temp-hero-capture-input:focus {
    outline: none;
    border-color: #001eff;
    box-shadow: 0 0 0 4px rgba(0, 30, 255, 0.1);
}

.temp-hero-capture-btn {
    height: 52px;
    padding: 0 24px;
    white-space: nowrap;
}

.temp-hero-capture-note {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: #4b5563;
    letter-spacing: 0.2px;
}

.temp-hero-capture-feedback {
    min-height: 20px;
    margin: 0;
    font-size: 13px;
    color: #4b5563;
}

.temp-hero-capture-feedback.is-success {
    color: #0f766e;
}

.temp-hero-capture-feedback.is-error {
    color: #b91c1c;
}

.temp-inline-capture-section {
    max-width: 1100px;
    margin: 0 auto 88px;
    padding: 0 48px;
}

.temp-inline-capture-shell {
    max-width: 760px;
    margin: 0 auto;
}

.temp-inline-capture-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.temp-inline-capture-note {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    color: #4b5563;
    text-align: center;
}

/* --- TEMP HERO CAPTURE END --- */

/* --- Hero Section Styling --- */
#hero-landing {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 20px 60px;
    position: relative;
    z-index: 10;
}

.hero-landing {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 20px 60px;
    position: relative;
    z-index: 10;
}

.eyebrow {
    font-size: 16px;
    font-weight: 600;
    color: #001eff;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-heading {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 24px 0;
    letter-spacing: -2px;
}

.highlight-blue {
    color: #001eff;
}

.sub-heading {
    font-size: 20px;
    font-weight: 400;
    color: #4b5563;
    line-height: 1.5;
    margin: 0 0 40px 0;
    max-width: 600px;
}

/* --- Trust Section --- */
.trust-section {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
}

.revenue-text {
    margin: 8px 0 0 0;
    font-size: 18px;
    line-height: 1.6;
    color: #111;
    max-width: 620px;
}

.trust-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
    color: #111;
}

.avatar-group {
    display: flex;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    margin-left: -10px;
    overflow: hidden;
    object-fit: cover;
    display: block;
    background-color: #ccc;
}

.avatar:first-child {
    margin-left: 0;
}

.rating {
    text-align: center;
    display: flex;
    gap: 8px;
    align-items: center;
}

.stars {
    color: #fbbf24;
    font-size: 1rem;
    letter-spacing: 1px;
}

.rating-val {
    font-weight: 700;
    font-size: 16px;
    color: #111;
}

.trust-header-text {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    max-width: 260px;
    color: #111;
    margin: 0;
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
}

.mock-logo {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo-pensight svg {
    fill: none;
    stroke: #5bc2b4;
    stroke-width: 3px;
}

.logo-humaans {
    font-family: -apple-system, sans-serif;
    font-weight: 800;
}

.logo-dash0 {
    font-weight: 800;
    letter-spacing: -1px;
}

.logo-dash0 span {
    color: #4f46e5;
}

.logo-stealthgpt {
    font-family: monospace;
    font-size: 20px;
    font-weight: bold;
}

.logo-saleor {
    text-transform: lowercase;
    font-style: italic;
    font-weight: 900;
}

.logo-invgate {
    font-weight: 600;
    letter-spacing: 0;
}

.logo-container-landing {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

/* --- SECTION HEADER SYSTEM --- */
.section-header {
    text-align: center;
    margin-bottom: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

.section-eyebrow {
    font-size: 13px;
    font-weight: 700;
    color: #001eff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.section-title {
    color: #111;
    font-size: 44px;
    margin: 0 0 20px 0;
    text-align: center;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
    max-width: 800px;
}

.section-subheading {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.6;
    max-width: 750px;
    margin: 0;
    font-weight: 400;
}

/* --- NEW: Creative Portfolio Section --- */
.creative-section {
    padding: 60px 0 100px;
}

.creative-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    padding: 0 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.creative-card {
    border-radius: 8px;
    overflow: hidden;
    background-color: #f3f4f6;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-weight: 500;
    border: 1px solid #e5e7eb;
    position: relative;
}

.creative-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Customer Success Section --- */
.customer-success-section {
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 0 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.experience-container {
    display: flex;
    width: 100%;
    height: var(--card-height);
    gap: 10px;
    overflow: hidden;
}

.hover-card {
    position: relative;
    flex: 1;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background: #1a1a1a;
    transition: flex var(--transition-speed) cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s ease;
}

.hover-card:hover {
    flex: 5;
}

.thumbnail-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    z-index: 2;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.hover-card:hover .thumbnail-img {
    opacity: 0;
}

.hover-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    border: 0;
    z-index: 1;
}

.hover-video-direct {
    object-fit: cover;
}

.description-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9) 30%);
    padding: 30px 25px 25px 25px;
    box-sizing: border-box;
    z-index: 4;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.5s ease 0.2s, opacity 0.5s ease 0.2s;
}

.hover-card:hover .description-bar {
    transform: translateY(0);
    opacity: 1;
}

.desc-text {
    color: white;
}

.desc-text h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.desc-text p {
    margin: 6px 0 0 0;
    font-size: 14px;
    color: #d1d1d1;
    line-height: 1.4;
}

/* --- Features Grid Section --- */
.features-section {
    max-width: 1100px;
    margin: 0 auto 100px;
    padding: 0 48px;
    background-color: transparent;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 64px;
    row-gap: 48px;
}

.feature-item {
    border-top: 1px solid #d1cfc5;
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 26px;
    height: 26px;
    background-color: #4f46e5;
    color: #ffffff;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px 0;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.feature-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* --- Sticky Stacking Principles Section --- */
.sticky-steps-section {
    padding: 40px 20px 100px;
}

.sticky-steps-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.sticky-card {
    position: sticky;
    top: 120px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 80px 60px;
    min-height: 100px;
    margin-bottom: 10vh;
    z-index: 1;
}

.sticky-card:last-child {
    margin-bottom: 0;
}

.sticky-card-num {
    font-size: 100px;
    color: #001eff;
    font-weight: 500;
    line-height: 0.8;
    width: 15%;
}

.sticky-card-title {
    font-size: 38px;
    color: #0b1120;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -1.5px;
    width: 40%;
    margin: 0;
}

.sticky-card-desc {
    font-size: 16px;
    color: #5b657a;
    line-height: 1.6;
    width: 35%;
    margin: 0;
}

/* --- Why Us Section --- */
.why-us-section {
    max-width: 1100px;
    margin: 120px auto;
    padding: 0 48px;
    text-align: center;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-us-card {
    background-color: #f9fafb;
    padding: 40px 32px;
    border-radius: 8px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid #e5e7eb;
}

.card-icon {
    color: #001eff;
    margin-bottom: 24px;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px 0;
    letter-spacing: -0.3px;
}

.card-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* --- Platform Walkthrough Video Section --- */
.video-section {
    max-width: 1000px;
    margin: 0 auto 120px;
    padding: 0 48px;
}

.video-container {
    position: relative;
    padding-bottom: 56.22568093385214%;
    height: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
    background-color: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* --- Work Showcase Marquee Section --- */
.work-showcase-section {
    padding: 0 0 84px 0;
    overflow: hidden;
}

.work-showcase-section .section-header {
    margin-bottom: 32px;
}

.work-showcase-wrapper {
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.work-showcase-track {
    display: flex;
    width: max-content;
}

.work-showcase-track.top-track {
    animation: workScrollLeft 40s linear infinite;
}

.work-showcase-track.bottom-track {
    animation: workScrollRight 45s linear infinite;
}

.work-showcase-track:hover {
    animation-play-state: paused;
}

.work-showcase-content {
    display: flex;
    gap: 24px;
    padding-right: 24px;
}

.work-showcase-content img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    background-color: #ffffff;
}

.work-showcase-content img:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@keyframes workScrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes workScrollRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* --- Logo Marquee Section --- */
.logo-marquee-section {
    padding: 0 0 100px 0;
}

.logo-marquee-section .section-header {
    margin-bottom: 20px;
}

.logo-wall-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    height: 600px;
    overflow: hidden;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 15%;
    z-index: 5;
    pointer-events: none;
}

.fade-left {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}

.fade-right {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}

.rows-wrapper {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    z-index: 1;
    opacity: 0.6;
}

.logo-row {
    display: flex;
    width: max-content;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 60px;
    padding-right: 60px;
}

.logo-track img {
    object-fit: contain;
    filter: grayscale(0%);
    opacity: 0.7;
    transition: all 0.4s ease;
}

.logo-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.move-left {
    animation: scrollLeft 45s linear infinite;
}

.move-right {
    animation: scrollRight 50s linear infinite;
}

.cta-panel {
    position: relative;
    z-index: 10;
    background-color: #0f172a;
    color: white;
    padding: 50px 40px;
    border-radius: 8px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.cta-panel h2 {
    margin-top: 0;
    font-size: 28px;
    line-height: 1.3;
}

.cta-panel p {
    color: #94a3b8;
    font-size: 16px;
    margin-bottom: 30px;
}

/* --- Footer --- */
.glowradius-footer {
    background-color: #1621f3;
    position: relative;
    padding: 140px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    width: 100%;
    margin-top: 40px;
}

.footer-dot-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.25) 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    mask-image: radial-gradient(ellipse 60% 80% at center, black 15%, transparent 85%);
    -webkit-mask-image: radial-gradient(ellipse 60% 80% at center, black 15%, transparent 85%);
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.footer-content h2 {
    color: #ffffff;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1.5px;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sticky-card {
        flex-direction: column;
        padding: 40px 30px;
        gap: 24px;
        margin-bottom: 20px;
    }

    .sticky-card:last-child {
        margin-bottom: 0;
    }

    .sticky-card-num,
    .sticky-card-title,
    .sticky-card-desc {
        width: 100%;
    }

    .sticky-card-num {
        font-size: 70px;
    }

    .sticky-card-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }

    .main-heading {
        font-size: 42px;
    }

    .sub-heading {
        font-size: 16px;
    }

    .header {
        padding: 16px 0;
    }

    .features-section,
    .why-us-section,
    .customer-success-section,
    .video-section,
    .sticky-steps-section {
        padding: 0 20px;
    }

    .temp-inline-capture-section {
        padding: 0 20px;
        margin-bottom: 64px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        row-gap: 40px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .experience-container {
        flex-direction: column;
        height: 800px;
    }

    .hover-card:hover {
        flex: 2;
    }

    .logo-wall-container {
        height: 450px;
    }

    .work-showcase-section {
        padding-bottom: 60px;
    }

    .work-showcase-wrapper {
        gap: 16px;
    }

    .work-showcase-content {
        gap: 16px;
        padding-right: 16px;
    }

    .work-showcase-content img {
        width: 220px;
        height: 220px;
    }

    .footer-content h2 {
        font-size: 34px;
    }

    .glowradius-footer {
        padding: 100px 20px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .temp-hero-capture {
        max-width: 360px;
    }

    .temp-hero-capture-form {
        gap: 8px;
    }

    .temp-hero-capture-row {
        flex-direction: column;
        align-items: stretch;
    }

    .temp-hero-capture-row-details {
        grid-template-columns: 1fr;
    }

    .temp-hero-capture-input,
    .temp-hero-capture-btn {
        width: 100%;
    }

    .btn-blue,
    .btn-outline {
        width: 100%;
        text-align: center;
    }

    .trust-section {
        padding: 0 20px;
    }

    .creative-grid {
        grid-template-columns: 1fr;
    }
}

.temp-bowtie-section {
    padding: 12px 20px 56px;
    overflow: hidden;
}

.temp-bowtie-frame {
    max-width: 940px;
    margin: 0 auto;
}

.temp-bowtie-schema-wrapper {
    position: relative;
    width: 900px;
    height: 360px;
    margin: 0 auto;
    color: #111;
}

.temp-bowtie-funnel-wrapper {
    position: absolute;
    top: 80px;
    left: 40px;
    width: 820px;
    height: 220px;
    overflow: visible;
}

.temp-bowtie-funnel {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            #dff8ff 0%,
            #dff8ff 43%,
            #111111 43%,
            #111111 57%,
            #ffe6f7 57%,
            #ffe6f7 100%);
    clip-path: polygon(0% 0%,
            43% 36%,
            57% 36%,
            100% 0%,
            100% 100%,
            57% 64%,
            43% 64%,
            0% 100%);
    overflow: hidden;
}

.temp-bowtie-vertical-grid {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 22% 22% 13% 14% 15% 14%;
    z-index: 3;
    pointer-events: none;
}

.temp-bowtie-grid-cell {
    border-left: 1px dotted rgba(0, 0, 0, 0.18);
}

.temp-bowtie-grid-cell:nth-child(3),
.temp-bowtie-grid-cell:nth-child(4) {
    border-left: 1px dotted rgba(255, 255, 255, 0.25);
}

.temp-bowtie-grid-cell:first-child {
    border-left: none;
}

.temp-bowtie-stage-labels {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 22% 22% 13% 14% 15% 14%;
    align-items: center;
    text-align: center;
    z-index: 4;
    font-size: 14px;
    font-weight: 700;
}

.temp-bowtie-stage-labels>div {
    color: #111;
}

.temp-bowtie-middle-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    color: #ffffff !important;
    font-weight: 800;
    padding: 0 8px;
    line-height: 1.15;
}

.temp-bowtie-revenue-label {
    position: absolute;
    top: 62px;
    right: 82px;
    z-index: 4;
    font-size: 14px;
    font-weight: 700;
    color: #111;
}

.temp-bowtie-revenue-line {
    position: absolute;
    top: 90px;
    left: 57%;
    right: 0;
    border-top: 1px dashed rgba(0, 0, 0, 0.25);
    z-index: 3;
}

.temp-bowtie-fill-cover {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-color: #f7f7f9;
    z-index: 10;
    transform: scaleX(1);
    transform-origin: right;
}

@keyframes tempBowtieFillPipe {
    0% {
        transform: scaleX(1);
    }

    100% {
        transform: scaleX(0);
    }
}

.temp-bowtie-outside-label {
    position: absolute;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.8px;
    color: #111;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 20;
    opacity: 0;
    transform: translateY(8px);
}

@keyframes tempBowtieLabelPop {
    0% {
        opacity: 0;
        transform: translateY(8px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.temp-bowtie-top-personalization {
    top: 28px;
    left: 155px;
}

.temp-bowtie-top-conversion {
    top: 28px;
    left: 400px;
}

.temp-bowtie-bottom-account {
    top: 315px;
    left: 45px;
}

.temp-bowtie-bottom-ad {
    top: 315px;
    left: 300px;
}

.temp-bowtie-bottom-orchestration {
    top: 315px;
    left: 570px;
}

.temp-bowtie-outside-guide {
    position: absolute;
    width: 0;
    border-left: 2px dashed rgba(0, 0, 0, 0.85);
    z-index: 2;
    opacity: 0;
    transform: scaleY(0);
}

@keyframes tempBowtieGuideDraw {
    0% {
        opacity: 0;
        transform: scaleY(0);
    }

    100% {
        opacity: 1;
        transform: scaleY(1);
    }
}

.temp-bowtie-guide-top-1,
.temp-bowtie-guide-top-2 {
    transform-origin: top;
}

.temp-bowtie-guide-top-1 {
    left: 220px;
    top: 58px;
    height: 63px;
}

.temp-bowtie-guide-top-2 {
    left: 410px;
    top: 58px;
    height: 101px;
}

.temp-bowtie-guide-bottom-1,
.temp-bowtie-guide-bottom-2,
.temp-bowtie-guide-bottom-3,
.temp-bowtie-guide-bottom-4 {
    transform-origin: top;
}

.temp-bowtie-guide-bottom-1 {
    left: 120px;
    top: 282px;
    height: 31px;
}

.temp-bowtie-guide-bottom-2 {
    left: 330px;
    top: 235px;
    height: 78px;
}

.temp-bowtie-guide-bottom-3 {
    left: 640px;
    top: 251px;
    height: 62px;
}

.temp-bowtie-guide-bottom-4 {
    left: 760px;
    top: 278px;
    height: 35px;
}

.temp-bowtie-section.is-visible .temp-bowtie-fill-cover {
    animation: tempBowtieFillPipe 4s ease-in-out forwards;
}

.temp-bowtie-section.is-visible .temp-bowtie-outside-label {
    animation: tempBowtieLabelPop 0.45s ease-out forwards;
}

.temp-bowtie-section.is-visible .temp-bowtie-outside-guide {
    animation: tempBowtieGuideDraw 0.45s ease-out forwards;
}

.temp-bowtie-section.is-visible .temp-bowtie-top-personalization {
    animation-delay: 4.35s;
}

.temp-bowtie-section.is-visible .temp-bowtie-top-conversion {
    animation-delay: 4.85s;
}

.temp-bowtie-section.is-visible .temp-bowtie-bottom-account {
    animation-delay: 5.35s;
}

.temp-bowtie-section.is-visible .temp-bowtie-bottom-ad {
    animation-delay: 5.85s;
}

.temp-bowtie-section.is-visible .temp-bowtie-bottom-orchestration {
    animation-delay: 6.35s;
}

.temp-bowtie-section.is-visible .temp-bowtie-guide-top-1 {
    animation-delay: 4.2s;
}

.temp-bowtie-section.is-visible .temp-bowtie-guide-top-2 {
    animation-delay: 4.7s;
}

.temp-bowtie-section.is-visible .temp-bowtie-guide-bottom-1 {
    animation-delay: 5.2s;
}

.temp-bowtie-section.is-visible .temp-bowtie-guide-bottom-2 {
    animation-delay: 5.7s;
}

.temp-bowtie-section.is-visible .temp-bowtie-guide-bottom-3 {
    animation-delay: 6.2s;
}

.temp-bowtie-section.is-visible .temp-bowtie-guide-bottom-4 {
    animation-delay: 6.5s;
}

@media (max-width: 960px) {
    .temp-bowtie-section {
        padding: 0 16px 48px;
    }

    .temp-bowtie-frame {
        max-width: calc(100vw - 32px);
        overflow: hidden;
    }

    .temp-bowtie-schema-wrapper {
        transform: scale(calc((100vw - 32px) / 900));
        transform-origin: top center;
        height: calc(360px * ((100vw - 32px) / 900));
    }
}