/* ===============================================================
   PIXLFY — HOMEPAGE
   =============================================================== */

body.page--home { background: #f7f4ef; color: #0f172a; overflow-x: hidden; }
.home { display: block; padding-top: 72px; overflow-x: clip; }

.h-section {
    font-family: "Manrope", sans-serif;
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.08;
    color: #0f172a;
    margin: 0;
}
.p-section {
    font-family: "Inter", sans-serif;
    font-size: 14.5px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
    max-width: 360px;
}

.eyebrow {
    display: inline-block;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.4px;
    color: #ff385d;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.eyebrow--light { color: #ff6e87; }

/* =============== HERO =============== */
.hero {
    padding: 20px 48px 36px;
    background: #f7f4ef;
    overflow-x: clip;
}
.hero__wrap {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.hero__wrap > * { width: 100%; }

.hero__topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}
.hero__live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #111827;
    text-transform: uppercase;
}
.hero__live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff385d;
    box-shadow: 0 0 0 3px rgba(255, 56, 93, 0.2);
    animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(255, 56, 93, 0.2); }
    50% { box-shadow: 0 0 0 6px rgba(255, 56, 93, 0.08); }
}
.hero__rating {
    font-family: "Inter", sans-serif;
    font-size: 12.5px;
    color: #475569;
    margin-right: 2px;
}
.hero__rating strong { color: #0f172a; font-weight: 700; margin-right: 4px; }
.hero__stars { color: #fbbf24; margin-right: 8px; letter-spacing: 1px; font-size: 12px; }

.hero__grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 44px;
    align-items: stretch;
}

/* Copy side — stretches to match image height; all content hugs the bottom so it sits just above the search bar */
.hero__copy {
    padding-top: 12px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.hero__title {
    font-family: "Manrope", sans-serif;
    font-size: 68px;
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -1.8px;
    color: #0f172a;
    margin: 0 0 20px;
}
.hero__title-accent {
    color: #ff385d;
    font-style: italic;
    font-weight: 800;
}
.hero__subtitle {
    font-family: "Inter", sans-serif;
    font-size: 16.5px;
    line-height: 1.65;
    color: #475569;
    max-width: 480px;
    margin: 0 0 24px;
}

.hero__ctas {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 0;
    margin-bottom: 0;
    flex-wrap: wrap;
}
.hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.18s ease;
    border: none;
    cursor: pointer;
}
.hero__btn--primary {
    background: #ff385d;
    color: #fff;
    padding: 13px 22px;
    box-shadow: 0 10px 22px rgba(255, 56, 93, 0.28);
}
.hero__btn--primary:hover { background: #e62e53; transform: translateY(-1px); }
.hero__btn--ghost {
    color: #0f172a;
    padding: 12px 4px;
    background: transparent;
}
.hero__btn--ghost:hover { color: #ff385d; }
.hero__btn-play {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #0f172a;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 2px;
    flex-shrink: 0;
    transition: background 0.15s ease;
}
.hero__btn-play svg { width: 10px; height: 10px; }
.hero__btn--ghost:hover .hero__btn-play { background: #ff385d; }

/* Search bar — sits inside the left copy column, below the CTAs */
.hero__search {
    display: flex;
    align-items: stretch;
    background: #fff;
    border: 1px solid #e8e3d9;
    border-radius: 16px;
    padding: 6px;
    gap: 0;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
    margin: 20px 0 0;
    width: 100%;
    box-sizing: border-box;
}
.hero__search-field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.15s ease;
    min-width: 0;
}
.hero__search-field:hover { background: #f8fafc; }
.hero__search-field > div { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.hero__search-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #fef2f4;
    color: #ff385d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hero__search-label {
    font-family: "Inter", sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}
.hero__search-input {
    border: none;
    background: transparent;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
    padding: 0;
    width: 100%;
    outline: none;
    appearance: none;
}
.hero__search-input::placeholder { color: #94a3b8; font-weight: 500; }
.hero__search-divider { width: 1px; background: #eceae5; margin: 12px 0; }
.hero__search-btn {
    background: #ff385d;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 0 22px;
    font-family: "Inter", sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.15s;
    flex-shrink: 0;
    box-shadow: 0 8px 16px rgba(255, 56, 93, 0.25);
}
.hero__search-btn:hover { background: #e62e53; }

/* As featured in */
.hero__featured {
    margin-top: 28px;
    padding: 18px 0;
    border-top: 1px solid #e7ddd0;
    display: flex;
    align-items: center;
    gap: 28px;
}
.hero__featured-label {
    flex-shrink: 0;
    font-family: "Inter", sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #94a3b8;
    text-transform: uppercase;
}
.hero__featured-logos {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.hero__featured-logos li {
    font-family: "Playfair Display", "Manrope", serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #8a8578;
    text-transform: uppercase;
    opacity: 0.85;
}
.hero__featured-logos li em {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-style: italic;
    text-transform: none;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0;
    margin-right: 4px;
}

/* Showcase side */
.hero__showcase {
    position: relative;
    aspect-ratio: 5/6;
    min-height: 440px;
    max-height: 560px;
    align-self: end;
    width: 100%;
}
.hero__showcase-media {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #2b1d1e 0%, #4a3236 100%);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}
.hero__showcase-media img { width: 100%; height: 100%; object-fit: cover; }

.hero__verified {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(15, 15, 16, 0.82);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}
.hero__verified svg { color: #22c55e; }

.hero__showcase-popup {
    position: absolute;
    top: 80px;
    left: -40px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.2);
    max-width: 240px;
    transform-origin: center;
    animation: pixPopupFloat 3.4s ease-in-out infinite;
    animation-delay: 0.4s;
}

@keyframes pixPopupFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-6px) rotate(-1.2deg); }
}
.hero__showcase-popup-avatars { display: inline-flex; }
.hero__showcase-popup-avatars span {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -6px;
}
.hero__showcase-popup-avatars span:first-child { margin-left: 0; }
.hero__showcase-popup > div:last-child { display: flex; flex-direction: column; }
.hero__showcase-popup strong {
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 800;
    color: #0f172a;
}
.hero__showcase-popup span:last-child {
    font-family: "Inter", sans-serif;
    font-size: 10.5px;
    color: #64748b;
}

.hero__showcase-meta {
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 12px 16px;
    background: rgba(15, 15, 16, 0.72);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    color: #fff;
    max-width: calc(100% - 120px);
}
.hero__showcase-meta-label {
    font-family: "Inter", sans-serif;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
}
.hero__showcase-meta strong {
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 800;
}
.hero__showcase-meta-sub {
    font-family: "Inter", sans-serif;
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.72);
}

.hero__showcase-badge {
    position: absolute;
    right: -28px;
    top: 55%;
    transform: translateY(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 14px 18px;
    background: #fff;
    color: #0f172a;
    border-radius: 14px;
    text-align: left;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.22);
    animation: pixBadgeBounce 3s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
    animation-delay: 0.9s;
}

@keyframes pixBadgeBounce {
    0%, 100% { transform: translateY(-50%) rotate(0deg); }
    50%      { transform: translateY(-62%) rotate(1.5deg); }
}

@media (prefers-reduced-motion: reduce) {
    .hero__showcase-popup,
    .hero__showcase-badge { animation: none; }
}
.hero__showcase-badge strong {
    font-family: "Manrope", sans-serif;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    color: #ff385d;
}
.hero__showcase-badge span {
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    letter-spacing: 0.2px;
    margin-top: 3px;
}

.hero__showcase-heart {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 3;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
    padding: 0;
}
.hero__showcase-heart:hover {
    background: rgba(255, 255, 255, 0.28);
    color: #ff385d;
}

/* Benefits row */
.hero__benefits {
    list-style: none;
    padding: 18px 0 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    background: transparent;
    border: none;
    border-top: 1px solid #e7ddd0;
    border-radius: 0;
    box-shadow: none;
}
.hero__benefits li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
    white-space: nowrap;
}
.hero__benefits-tick {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #dcfce7;
    color: #16a34a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* =============== HOW =============== */
/* =============== TRUST STRIP =============== */
.trust {
    background: #ffffff;
    padding: 22px 48px;
    border-bottom: 1px solid #e7ddd0;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
    position: relative;
    z-index: 2;
}
.trust__list {
    max-width: 1280px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}
.trust__list li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-right: 28px;
    border-right: 1px solid #e7ddd0;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
}
.trust__list li:last-child {
    padding-right: 0;
    border-right: none;
}
.trust__tick {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ff385d;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(255, 56, 93, 0.25);
}

@media (max-width: 768px) {
    .trust { padding: 18px 24px; }
    .trust__list { gap: 12px 20px; justify-content: flex-start; }
    .trust__list li {
        font-size: 12.5px;
        padding-right: 16px;
        border-right: 1px solid #e7ddd0;
    }
    .trust__list li:last-child { padding-right: 0; border-right: none; }
}

.how { padding: 72px 48px; background: #ffffff; }
.how__wrap { max-width: 1280px; margin: 0 auto; }
.how__head { margin-bottom: 40px; }
.how__head-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    align-items: end;
}
.how__head-row .p-section { max-width: 320px; justify-self: end; text-align: right; }

.how__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.how__card {
    background: #fff;
    border: 1px solid #ebe5d8;
    border-radius: 20px;
    padding: 26px 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.how__card:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08); }
.how__top { display: flex; align-items: center; justify-content: space-between; }
.how__icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: #fef2f4;
    color: #ff385d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.how__step {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1;
}
.how__step em {
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.4px;
    color: #94a3b8;
    text-transform: uppercase;
    font-style: normal;
    margin-bottom: 4px;
}
.how__step strong {
    font-family: "Manrope", sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
}
.how__title {
    font-family: "Manrope", sans-serif;
    font-size: 19px;
    font-weight: 800;
    color: #0f172a;
    margin: 6px 0 0;
    letter-spacing: -0.3px;
}
.how__body {
    font-family: "Inter", sans-serif;
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}
.how__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 10px;
    padding-top: 16px;
    border-top: 1px solid #f0ece2;
}
.how__meta {
    font-family: "Inter", sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    color: #64748b;
}
.how__foot a {
    font-family: "Inter", sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    color: #ff385d;
    text-decoration: none;
}
.how__foot a:hover { color: #e62e53; }

/* =============== TALENT =============== */
.talent { padding: 32px 48px 72px; }
.talent__wrap { max-width: 1280px; margin: 0 auto; }
.talent__head { margin-bottom: 28px; }
.talent__head-row {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    align-items: end;
}
.talent__subtitle { justify-self: end; text-align: right; }

.talent__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.talent__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.talent__filter {
    background: #fff;
    border: 1px solid #e8e2d4;
    border-radius: 999px;
    padding: 8px 16px;
    font-family: "Inter", sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: all 0.15s;
}
.talent__filter:hover { border-color: #0f172a; color: #0f172a; }
.talent__filter.is-active { background: #0f172a; color: #fff; border-color: #0f172a; }
.talent__all {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
    white-space: nowrap;
}
.talent__all:hover { color: #ff385d; }

.talent__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.talent__card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #ebe5d8;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.talent__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.1);
}
.talent__thumb {
    aspect-ratio: 4/5;
    position: relative;
    overflow: hidden;
}
.talent__fav {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(8px);
    color: #fff;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
    z-index: 2;
}
.talent__fav:hover { background: rgba(15, 23, 42, 0.55); transform: scale(1.05); }
.talent__fav.is-active { background: #fff; color: #ff385d; }
.talent__fav.is-active svg { fill: #ff385d; }

.talent__verified {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px 5px 6px;
    background: #fff;
    border-radius: 999px;
    color: #0f172a;
    font-family: "Inter", sans-serif;
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 0.7px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
    z-index: 2;
}
.talent__verified-tick {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: #22c55e;
    color: #fff;
}
.talent__city {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(8px);
    border-radius: 999px;
    font-family: "Inter", sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    z-index: 2;
}
.talent__city svg { opacity: 0.95; }

.talent__meta {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.talent__name {
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.2px;
}
.talent__role {
    font-family: "Inter", sans-serif;
    font-size: 12.5px;
    color: #64748b;
}
.talent__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #f0ece2;
}
.talent__rating {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    font-family: "Inter", sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    color: #0f172a;
}
.talent__star { color: #ff385d; font-size: 13px; line-height: 1; }
.talent__rating strong { font-weight: 800; color: #0f172a; }
.talent__rating em {
    font-style: normal;
    color: #94a3b8;
    font-weight: 500;
}
.talent__price {
    font-family: "Inter", sans-serif;
    font-size: 11.5px;
    color: #94a3b8;
}
.talent__price strong { color: #0f172a; font-weight: 800; margin-left: 2px; font-size: 13px; }

/* =============== STORIES =============== */
.stories { padding: 32px 48px 72px; background: #ffffff; }
.stories__wrap { max-width: 1280px; margin: 0 auto; }
.stories__head { margin-bottom: 32px; }
.stories__head-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    align-items: end;
}
.stories__head-row .p-section { justify-self: end; text-align: right; max-width: 320px; }
.stories__accent { color: #ff385d; font-style: italic; }

.stories__grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 22px;
}
.stories__feature {
    background: #fff;
    border: 1px solid #ebe5d8;
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}
.stories__pick {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    padding: 5px 10px;
    background: #ff385d;
    color: #fff;
    border-radius: 999px;
    font-family: "Inter", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}
.stories__feature-image {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #2b1d1e, #4a3236);
}
.stories__feature-body { padding: 28px; }
.stories__quote {
    font-family: "Manrope", sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.38;
    color: #0f172a;
    margin: 0 0 18px;
    letter-spacing: -0.4px;
}
.stories__quote em {
    color: #ff385d;
    font-style: italic;
    font-weight: 700;
}
.stories__attrib { display: flex; flex-direction: column; gap: 2px; }
.stories__attrib strong {
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
}
.stories__attrib span {
    font-family: "Inter", sans-serif;
    font-size: 12.5px;
    color: #64748b;
}

.stories__side { display: flex; flex-direction: column; gap: 14px; }
.stories__card {
    background: #fff;
    border: 1px solid #ebe5d8;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex: 1;
    min-height: 120px;
}
.stories__card-image { width: 130px; flex-shrink: 0; }
.stories__card-body {
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    min-width: 0;
}
.stories__card-cat {
    font-family: "Inter", sans-serif;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #ff385d;
    text-transform: uppercase;
}
.stories__card-body h4 {
    font-family: "Manrope", sans-serif;
    font-size: 14.5px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    letter-spacing: -0.2px;
}
.stories__card-body p {
    font-family: "Inter", sans-serif;
    font-size: 11.5px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}
.stories__card-body a {
    font-family: "Inter", sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    color: #ff385d;
    text-decoration: none;
    margin-top: 4px;
}

/* =============== FINDER (dual CTA) =============== */
.finder { padding: 24px 48px 72px; position: relative; }
.finder__anchor { position: absolute; top: -80px; display: block; height: 0; width: 0; }
.finder__wrap {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.finder__card {
    border-radius: 24px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
}
.finder__card--light {
    background: #fff;
    border: 1px solid #ebe5d8;
    color: #0f172a;
}
.finder__card--dark {
    background: #1a1012;
    color: #fff;
    background-image: radial-gradient(circle at top right, rgba(255, 56, 93, 0.14), transparent 55%);
}
.finder__title {
    font-family: "Manrope", sans-serif;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.8px;
    margin: 0 0 14px;
}
.finder__card--dark .finder__title { color: #fff; }
.finder__title-accent { color: #ff385d; font-style: italic; font-weight: 800; }

.finder__subtitle {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    margin: 0 0 22px;
    max-width: 440px;
}
.finder__card--dark .finder__subtitle { color: rgba(255, 255, 255, 0.6); }

.finder__list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.finder__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: "Inter", sans-serif;
    font-size: 13.5px;
    color: #334155;
    line-height: 1.5;
}
.finder__list--dark li { color: rgba(255, 255, 255, 0.82); }
.finder__tick {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ff385d;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 1px;
    box-shadow: 0 2px 6px rgba(255, 56, 93, 0.25);
}
.finder__tick--red { background: #ff385d; color: #ffffff; }

.finder__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 22px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.finder__stats > div { display: flex; flex-direction: column; gap: 2px; }
.finder__stats strong {
    font-family: "Manrope", sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #ff385d;
    letter-spacing: -0.4px;
}
.finder__stats span {
    font-family: "Inter", sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.2px;
}

.finder__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Inter", sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 11px;
    padding: 12px 20px;
    transition: all 0.15s;
    cursor: pointer;
    border: none;
    align-self: flex-start;
}
.finder__btn--primary { background: #ff385d; color: #fff; box-shadow: 0 8px 20px rgba(255, 56, 93, 0.3); }
.finder__btn--primary:hover { background: #e62e53; }
.finder__btn--ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.16);
}
.finder__btn--ghost:hover { background: rgba(255, 255, 255, 0.14); }

.finder__actions { display: flex; gap: 10px; flex-wrap: wrap; }

.finder__thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: auto;
    padding-top: 22px;
}
.finder__thumbs span {
    aspect-ratio: 4/3;
    border-radius: 12px;
    display: block;
}

/* =============== MOMENTS =============== */
.moments { padding: 32px 48px 72px; background: #ffffff; }
.moments__wrap { max-width: 1280px; margin: 0 auto; }
.moments__head { margin-bottom: 32px; }
.moments__head-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    align-items: end;
}
.moments__head-row .p-section { justify-self: end; text-align: right; max-width: 320px; }
.moments__accent { color: #ff385d; font-style: italic; }

.moments__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 16px;
}
.moments__tile {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: flex-end;
    padding: 18px;
    transition: transform 0.2s ease;
}
.moments__tile:hover { transform: translateY(-3px); }
.moments__tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.45));
}
.moments__tile--tall { grid-row: span 2; }
.moments__tile-body { position: relative; z-index: 2; }
.moments__tile-body h4 {
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 4px;
    letter-spacing: -0.3px;
}
.moments__tile-body span {
    font-family: "Inter", sans-serif;
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.85);
}

/* =============== FINAL CTA =============== */
.cta { padding: 32px 48px 72px; }
.cta__wrap {
    max-width: 1280px;
    margin: 0 auto;
    background: #1a1012;
    background-image: radial-gradient(circle at bottom right, rgba(255, 56, 93, 0.22), transparent 55%);
    color: #fff;
    border-radius: 24px;
    padding: 56px 48px;
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 32px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.cta__title {
    font-family: "Manrope", sans-serif;
    font-size: 44px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1px;
    margin: 0 0 14px;
    color: #fff;
}
.cta__title-accent { color: #ff385d; font-style: italic; font-weight: 800; }
.cta__subtitle {
    font-family: "Inter", sans-serif;
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 26px;
    max-width: 500px;
    line-height: 1.6;
}
.cta__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.15s;
}
.cta__btn--primary { background: #ff385d; color: #fff; box-shadow: 0 10px 22px rgba(255, 56, 93, 0.32); }
.cta__btn--primary:hover { background: #e62e53; }
.cta__btn--ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
}
.cta__btn--ghost:hover { background: rgba(255, 255, 255, 0.14); }

.cta__visual {
    position: relative;
    height: 260px;
}
.cta__card {
    position: absolute;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}
.cta__card--a {
    inset: 0 30% 30% 0;
    background: linear-gradient(135deg, #4a3236, #2b1d1e);
    transform: rotate(-5deg);
}
.cta__card--b {
    inset: 30% 0 0 30%;
    background: linear-gradient(135deg, #fecaca, #fda4af);
    transform: rotate(4deg);
}

/* Footer styles moved to styles.css for global reuse (.foot, .foot__*) */

/* =============== RESPONSIVE =============== */
@media (max-width: 1100px) {
    .hero__grid { grid-template-columns: 1fr; gap: 36px; }
    .hero__title { font-size: 52px; }
    .hero__showcase { min-height: 440px; max-width: 520px; }
    .how__head-row, .talent__head-row, .stories__head-row, .moments__head-row {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }
    .how__head-row .p-section, .talent__subtitle, .stories__head-row .p-section, .moments__head-row .p-section {
        justify-self: start;
        text-align: left;
    }
    .talent__grid { grid-template-columns: repeat(3, 1fr); }
    .stories__grid, .finder__wrap, .cta__wrap { grid-template-columns: 1fr; }
    .moments__grid { grid-template-columns: repeat(2, 1fr); }
    .moments__tile--tall { grid-row: auto; }
    .cta__visual { display: none; }
}

@media (max-width: 720px) {
    .home { padding-top: 64px; }
    .hero { padding: 24px 16px 40px; }
    .hero__title { font-size: 40px; letter-spacing: -1.2px; }
    .hero__search { flex-direction: column; padding: 8px; }
    .hero__search-divider { display: none; }
    .hero__search-btn { padding: 14px; justify-content: center; margin-top: 4px; }
    .hero__featured-logos { gap: 20px; }
    .hero__featured-logos li { font-size: 13px; }
    .hero__showcase { min-height: 380px; }
    .hero__benefits { padding: 16px; gap: 14px; }
    .hero__benefits li { font-size: 12px; width: calc(50% - 8px); }

    .how, .talent, .stories, .finder, .moments, .cta { padding-left: 16px; padding-right: 16px; }
    .h-section { font-size: 30px; }
    .how__grid, .talent__grid { grid-template-columns: 1fr; }
    .talent__grid { grid-template-columns: repeat(2, 1fr); }
    .talent__filters { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
    .talent__filter { white-space: nowrap; }
    .stories__card { flex-direction: column; }
    .stories__card-image { width: 100%; aspect-ratio: 16/9; }
    .finder__card { padding: 28px 22px; }
    .finder__title { font-size: 26px; }
    .finder__stats { grid-template-columns: 1fr 1fr; }
    .moments__grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
    .cta__wrap { padding: 36px 24px; }
    .cta__title { font-size: 30px; }
}
