.pro-antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.pro-font-inter {
    font-family: 'Inter', sans-serif;
}

.pro-bg-page {
    background-color: #fcfbfa;
}

.pro-text-dark {
    color: #1a1a1a;
}
@media (max-width: 768px) {
    .pro-btn-primary-wrapper {
        gap: 10px 0;
    }
    .pro-btn-primary {
        width: 100%;
    }
    .pro-btn-primary-link {
        width: 100%;
        justify-content: center;
    }
}
.pro-btn-primary {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 1rem 2rem;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid #000;
    transition: background-color 0.3s, color 0.3s;
    text-decoration: none;
    cursor: pointer;
}

.pro-btn-primary:hover {
    background-color: transparent;
    color: #000;
}

.pro-btn-light {
    display: inline-block;
    background-color: #fff;
    color: #000;
    padding: 1rem 2rem;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid #fff;
    transition: background-color 0.3s, color 0.3s;
    text-decoration: none;
    cursor: pointer;
}
@media (max-width: 768px) {
    .pro-btn-light {
        width: 100%;
    }
}

.pro-btn-light:hover {
    background-color: transparent;
    color: #fff;
}

.pro-card-accent {
    position: relative;
    transition: border-color 0.3s ease;
    overflow: hidden;
}

.pro-card-accent::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: #facc15;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.35s ease;
}

.pro-card-accent:hover {
    border-color: #1a1a1a;
}

.pro-card-accent:hover::before {
    transform: scaleY(1);
}

.pro-card-accent--dark::before {
    background-color: #fff;
}

.pro-card-accent--dark:hover {
    border-color: #fff;
}

@keyframes pro-fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pro-fade-up {
    animation: pro-fadeUp 0.6s ease-out both;
}

@keyframes pro-tagPop {

    0%,
    8% {
        opacity: 0;
        transform: translateY(6px) scale(0.96);
    }

    16%,
    88% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    96%,
    100% {
        opacity: 0;
        transform: translateY(6px) scale(0.96);
    }
}

@keyframes pro-dotPulse {

    0%,
    8% {
        opacity: 0;
        transform: scale(0.6);
    }

    16%,
    88% {
        opacity: 1;
        transform: scale(1);
    }

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

.pro-product-tag {
    animation: pro-tagPop 8s ease-in-out infinite;
}

.pro-product-dot {
    animation: pro-dotPulse 8s ease-in-out infinite;
}

.pro-product-dot::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 9999px;
    background-color: #facc15;
    opacity: 0.4;
    animation: pro-dotPulse 8s ease-in-out infinite;
}

@keyframes pro-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.pro-animate-scroll {
    animation: pro-scroll 20s linear infinite;
    will-change: transform;
}

.pro-no-scrollbar::-webkit-scrollbar {
    display: none;
}

.pro-no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.pro-container {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    padding: 0;
}

@media (min-width: 640px) {
    .pro-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

.pro-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .pro-hero-grid {
        grid-template-columns: 7fr 5fr;
        gap: 2rem;
    }
}

.pro-hero-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    width: 100%;
}

@media (min-width: 640px) {
    .pro-hero-photos {
        gap: 1rem;
    }
}

.pro-grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .pro-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pro-grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .pro-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pro-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .pro-grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}

.pro-grid-2-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .pro-grid-2-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pro-grid-2-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pro-bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    grid-auto-rows: auto;
}

@media (min-width: 768px) {
    .pro-bento-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 280px;
    }

    .pro-bento-span2 {
        grid-column: span 2;
    }
}

.pro-partners-bar {
    display: flex;
    align-items: center;
    overflow-x: auto;
    width: 100%;
    user-select: none;
    padding: 0.5rem 0;
}

.pro-partners-bar>div {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
    padding: 0 1rem;
    border-right: 1px solid rgba(26, 26, 26, 0.1);
    flex-shrink: 0;
    white-space: nowrap;
}

.pro-partners-bar>div:last-child {
    border-right: none;
}

.pro-grayscale {
    filter: grayscale(1);
    transition: filter 0.5s;
}

.pro-grayscale:hover {
    filter: grayscale(0);
}

.pro-aspect-square {
    aspect-ratio: 1 / 1;
}

.pro-aspect-4-3 {
    aspect-ratio: 4 / 3;
}

.pro-ai-wrap {
    position: relative;
}

.pro-ai-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 9999px;
    background-color: #facc15;
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.pro-ai-tag {
    position: absolute;
    background: #fff;
    padding: 0.5rem 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    font-size: 0.75rem;
}

@media (min-width: 640px) {
    .pro-ai-tag {
        font-size: 0.875rem;
    }
}

.pro-step-num {
    font-size: 2.25rem;
    font-weight: 700;
    color: #d1d5db;
    margin-bottom: 1.5rem;
}

.pro-cta-block {
    background: #000;
    padding: 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .pro-cta-block {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 2.5rem 3rem;
    }
}

#pro-landing {
    font-family: 'Inter', sans-serif;
    background-color: #fcfbfa;
    color: #1a1a1a;
    -webkit-font-smoothing: antialiased;
}

#pro-landing section {
    box-sizing: border-box;
}

#pro-landing img {
    display: block;
    max-width: 100%;
}

#pro-landing .pro-overflow-hidden {
    overflow: hidden;
}