@font-face {
    font-family: 'PPObjectSans-Bold';
    src: url('../fonts/PPObjectSans-Bold.woff2') format('woff2'),
         url('../fonts/PPObjectSans-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

.solovey-homepage {
    background: var(--solovey-page);
    color: var(--solovey-black);
}

.solovey-homepage .container {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
}

.solovey-homepage h1,
.solovey-homepage h2,
.solovey-homepage h3,
.solovey-homepage p,
.solovey-homepage a,
.solovey-homepage span {
    font-family: "PPObjectSans-Bold", sans-serif;
}

.solovey-section-heading {
    margin-bottom: 42px;
}

.solovey-section-heading--centered {
    text-align: center;
}

.solovey-section-heading h2 {
    margin: 0 0 14px;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1;
}

.solovey-section-heading p {
    max-width: 720px;
    margin: 0 auto;
    color: var(--solovey-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.solovey-hero {
    position: relative;
    --solovey-hero-shell-width: min(calc(100% - 112px), 1600px);
    --solovey-hero-shell-offset: max(24px, calc((100% - var(--solovey-hero-shell-width)) / 2));
    min-height: 86vh;
    overflow: hidden;
    background: var(--solovey-black);
}

.solovey-hero__track {
    position: relative;
    min-height: 86vh;
}

.solovey-hero__slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 90px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s ease;
    background-image: var(--slide-image);
    background-position: center;
    background-size: cover;
}

.solovey-hero__slide.is-active {
    opacity: 1;
    visibility: visible;
}

.solovey-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.42) 50%, rgba(0, 0, 0, 0.78) 100%);
}

.solovey-hero__content {
    position: relative;
    z-index: 1;
    width: var(--solovey-hero-shell-width);
    max-width: none;
    margin: 0 auto;
    color: var(--solovey-page);
}

.solovey-hero__content > * {
    max-width: 850px;
}

.solovey-hero__badge {
    display: inline-block;
    margin-bottom: 20px;
    padding: 0 12px;
    background: var(--solovey-sky);
    color: var(--solovey-black);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.solovey-hero__title {
    margin: 0 0 18px;
    font-size: clamp(3rem, 7vw, 5.4rem);
    line-height: 0.95;
    color: inherit;
}

.solovey-hero__description {
    margin: 0 0 28px;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.08rem;
    line-height: 1.7;
}

.solovey-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 128px;
    min-height: 44px;
    margin-top: 12px;
    padding: 0 24px;
    border: 1px solid var(--solovey-sky);
    background: var(--solovey-sky);
    color: var(--solovey-black);
    font-size: 0.95rem;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.solovey-hero__button:hover,
.solovey-hero__button:focus {
    background: var(--solovey-deep);
    border-color: var(--solovey-deep);
    color: var(--solovey-acid);
}

.solovey-slider-control {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(10, 10, 10, 0.38);
    color: transparent;
    font-size: 0;
    line-height: 1;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
    transform: translateY(-50%);
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.solovey-slider-control::before {
    content: '';
    display: block;
    width: 12px !important;
    height: 12px !important;
    position: static;
    top: auto;
    right: auto;
    border-top: 2px solid var(--solovey-page);
    border-right: 2px solid var(--solovey-page);
    transform: rotate(45deg);
    transition: border-color 0.2s ease;
}

.solovey-slider-control:hover,
.solovey-slider-control:focus-visible {
    background: var(--solovey-acid);
    border-color: var(--solovey-acid);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    outline: none;
}

.solovey-slider-control:hover::before,
.solovey-slider-control:focus-visible::before {
    border-color: var(--solovey-black);
    transform: rotate(45deg);
}

.solovey-slider-control:active {
    transform: translateY(-50%) scale(0.97);
}

.solovey-slider-control--prev {
    left: var(--solovey-hero-shell-offset);
}

.solovey-slider-control--prev::before {
    margin-left: 4px;
    transform: rotate(-135deg);
}

.solovey-slider-control--prev:hover::before,
.solovey-slider-control--prev:focus-visible::before {
    transform: rotate(-135deg);
}

.solovey-slider-control--next {
    right: var(--solovey-hero-shell-offset);
}

.solovey-slider-control--next::before {
    margin-right: 4px;
}

.solovey-slider-control--next:hover::before,
.solovey-slider-control--next:focus-visible::before {
    transform: rotate(45deg);
}

.solovey-hero__dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 24px;
}

.solovey-hero .solovey-hero__dots {
    position: absolute;
    bottom: 22px;
    left: 50%;
    z-index: 3;
    transform: translateX(-50%);
}

.solovey-hero__dots button {
    width: 28px;
    height: 4px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: var(--solovey-gray-mid);
}

.solovey-hero__dots button.is-active {
    background: var(--solovey-acid);
}

.solovey-content-block {
    padding: 90px 0 70px;
}

.solovey-content-block__inner {
    max-width: 920px;
    margin: 0 auto;
}

.solovey-content-block__inner > :last-child {
    margin-bottom: 0;
}

.solovey-content-block p,
.solovey-content-block li,
.solovey-content-block blockquote {
    font-family: sans-serif;
    color: var(--solovey-gray-dark);
    font-size: 1.05rem;
    line-height: 1.9;
}

.solovey-pillars {
    padding: 90px 0;
    background: var(--solovey-acid);
}

.solovey-pillars__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.solovey-pillar-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 30px 30px 26px;
    background: white;
    border: 1px solid rgba(16, 16, 16, 0.08);
}

.solovey-pillar-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    background: var(--solovey-sky);
    color: var(--solovey-black);
}

.solovey-pillar-card__icon svg {
    width: 24px;
    height: 24px;
}

.solovey-pillar-card h3 {
    margin: 0 0 16px;
    font-size: 2rem;
    line-height: 1;
}

.solovey-pillar-card p {
    margin: 0 0 36px;
    font-family: sans-serif;
    color: var(--solovey-gray-strong);
    line-height: 1.8;
}

.solovey-pillar-card a {
    margin-top: auto;
    color: var(--solovey-black);
    text-decoration: none;
}

.solovey-pillar-card a:hover {
    color: var(--solovey-sky);
}

.solovey-voices {
    position: relative;
    padding: 100px 0 90px;
}

.solovey-voices__viewport {
    overflow: hidden;
}

.solovey-voices__track {
    display: flex;
    align-items: flex-start;
    transition: transform 0.35s ease;
    will-change: transform;
}

.solovey-voices__page {
    flex: 0 0 100%;
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: 30px;
}

.solovey-voice-card {
    height: 300px;
    padding: 28px 26px 34px;
    background: var(--solovey-surface);
    border: 1px solid var(--solovey-border);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.solovey-voice-card__media {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.solovey-voice-card__media img,
.solovey-voice-card__placeholder {
    width: 74px;
    height: 74px;
    border-radius: 999px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--solovey-gradient-accent-start), var(--solovey-acid));
}

.solovey-voice-card h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
}

.solovey-voice-card__subtitle {
    margin: 0 0 16px;
    color: var(--solovey-sky);
    font-size: 0.95rem;
}

.solovey-voice-card__quote {
    margin: 0;
    font-family: sans-serif;
    color: var(--solovey-muted);
    line-height: 1.8;
    font-style: italic;
    overflow: auto;
}

.solovey-slider-control--voices {
    top: 50%;
    border-color: rgba(16, 16, 16, 0.14);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 36px rgba(16, 16, 16, 0.12);
}

.solovey-slider-control--voices.solovey-slider-control--prev {
    left: -26px;
}

.solovey-slider-control--voices.solovey-slider-control--next {
    right: -26px;
}

.solovey-slider-control--voices::before {
    border-color: var(--solovey-black);
}

.solovey-slider-control--voices:hover,
.solovey-slider-control--voices:focus-visible {
    border-color: var(--solovey-acid);
    background: var(--solovey-acid);
}

@media (max-width: 991px) {
    .solovey-pillars__grid {
        grid-template-columns: 1fr;
    }

    .solovey-voices__page {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .solovey-hero {
        --solovey-hero-shell-width: calc(100% - 32px);
        --solovey-hero-shell-offset: 16px;
    }

    .solovey-homepage .container {
        width: min(100% - 32px, 1200px);
    }

    .solovey-hero,
    .solovey-hero__track {
        min-height: 78vh;
    }

    .solovey-hero__title {
        font-size: clamp(2.4rem, 14vw, 3.8rem);
    }

    .solovey-slider-control {
        top: auto;
        bottom: 24px;
        transform: none;
    }

    .solovey-slider-control--prev,
    .solovey-slider-control--voices.solovey-slider-control--prev {
        left: 16px;
    }

    .solovey-slider-control--next,
    .solovey-slider-control--voices.solovey-slider-control--next {
        right: 16px;
    }

    .solovey-content-block,
    .solovey-pillars,
    .solovey-voices {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .solovey-voices__page {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .solovey-voice-card {
        height: 320px;
    }
}

