* {
    box-sizing: border-box;
}

.rc-phone {
    font-family: 'Jost', sans-serif;
    background: #0D0D0D;
    border-radius: 22px;
    max-width: 70%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    height: 580px;
    touch-action: pan-y;
}

.rc-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 4px;
    padding: 14px 14px 0;
    z-index: 30;
}

.rc-seg {
    flex: 1;
    height: 3px;
    border-radius: 2px;
    background: rgba(245, 245, 240, 0.15);
    overflow: hidden;
}

.rc-seg-fill {
    height: 100%;
    width: 0%;
    background: #C9A84C;
}

.rc-seg.done .rc-seg-fill {
    width: 100%;
}

.rc-deck {
    position: relative;
    width: 100%;
    height: 100%;
}

.rc-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 46px 26px 30px;
    text-align: center;
    transition: transform 0.32s ease;
    transform: translateX(100%);
}

.rc-frame.active {
    transform: translateX(0);
}

.rc-frame.prev {
    transform: translateX(-100%);
}

.rc-heart-bg {
    position: absolute;
    font-size: 500px;
    color: rgba(201, 168, 76, 0.025);
    pointer-events: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -52%);
    line-height: 1;
    user-select: none;
}

.rc-eyebrow {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C9A84C;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
}

.rc-eyebrows {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C9A84C;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    margin-top: -350px;
    margin-bottom: 50px;
}

.rc-eyebrow::before,
.rc-eyebrow::after {
    content: '';
    display: block;
    width: 18px;
    height: 0.5px;
    background: #C9A84C;
    opacity: 0.5;
}



.rc-counter-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px;
    font-weight: 600;
    color: #C9A84C;
    line-height: 1;
    margin: 10px 0 4px;
}

.rc-counter-label {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(245, 245, 240, 0.4);
}

.rc-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
    max-width: 260px;
    margin-top: 20px;
}

.rc-stat-card {
    background: #111111;
    border: 0.5px solid rgba(201, 168, 76, 0.18);
    border-radius: 10px;
    padding: 12px 8px;
}

.rc-stat-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: #C9A84C;
    line-height: 1.1;
}

.rc-stat-lab {
    font-size: 9.5px;
    color: rgba(245, 245, 240, 0.4);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 3px;
}

.rc-photo-stack {
    position: relative;
    justify-content: center;
    
    width: 500px;
}

.rc-photo {
    position:absolute;
    height: 400px;
    border-radius: 9px;
    border: 3px solid #F5F5F0;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(201, 168, 76, 0.5);
    font-size: 22px;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.rc-photo.going-back {
    opacity: 0;
    transform: scale(0.9) translateX(-50px) translateY(20px);
    z-index: -1;
}

.rc-photo.p1 {
    top: 0;
    left: 0;
    transform: rotate(-7deg);
    z-index: 1;
}

.rc-photo.p2 {
    top: 12px;
    left: 30px;
    transform: rotate(4deg);
    z-index: 2;
}

.rc-photo.p3 {
    top: 24px;
    left: 60px;
    transform: rotate(-3deg);
    z-index: 3;
}

.rc-tap-box {
    background: #111111;
    border: 0.5px solid rgba(201, 168, 76, 0.25);
    border-radius: 12px;
    padding: 26px 20px;
    width: 100%;
    max-width: 240px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.rc-tap-box:hover {
    border-color: #C9A84C;
    background: rgba(201, 168, 76, 0.06);
}

.rc-tap-icon {
    font-size: 22px;
    color: #C9A84C;
    margin-bottom: 10px;
}

.rc-tap-hint {
    font-size: 10.5px;
    color: rgba(245, 245, 240, 0.35);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.rc-revealed {
    display: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-style: italic;
    color: #F5F5F0;
    line-height: 1.55;
    padding: 6px 4px;
}

.rc-revealed.show {
    display: block;
}

.rc-input-wrap {
    width: 100%;
    max-width: 240px;
}

.rc-input {
    width: 100%;
    background: #111;
    border: 0.5px solid rgba(201, 168, 76, 0.25);
    border-radius: 9px;
    padding: 12px 14px;
    color: #F5F5F0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14.5px;
    font-style: italic;
    outline: none;
    margin-bottom: 12px;
}

.rc-input::placeholder {
    color: rgba(245, 245, 240, 0.25);
}

.rc-input:focus {
    border-color: #C9A84C;
}

.rc-submit-btn {
    background: #C9A84C;
    color: #0D0D0D;
    border: none;
    border-radius: 8px;
    padding: 11px 28px;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
}

.rc-submit-btn:hover {
    background: #dfc068;
}

.rc-input-echo {
    display: none;
    margin-top: 14px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-style: italic;
    color: #C9A84C;
}

.rc-input-echo.show {
    display: block;
}

.rc-quiz-opts {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 250px;
    margin-top: 6px;
}

.rc-quiz-opt {
    background: rgba(255, 255, 255, 0.03);
    color: rgba(245, 245, 240, 0.7);
    border: 0.5px solid rgba(245, 245, 240, 0.1);
    border-radius: 8px;
    padding: 10px 14px;
    font-family: 'Jost', sans-serif;
    font-size: 11.5px;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s;
}

.rc-quiz-opt:hover {
    border-color: rgba(201, 168, 76, 0.4);
    background: rgba(201, 168, 76, 0.06);
    color: #F5F5F0;
}

.rc-quiz-opt.correct {
    border-color: #C9A84C;
    background: rgba(201, 168, 76, 0.12);
    color: #C9A84C;
}

.rc-quiz-opt.wrong {
    border-color: rgba(245, 245, 240, 0.15);
    opacity: 0.4;
}

.rc-quiz-feedback {
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    font-style: italic;
    color: rgba(201, 168, 76, 0.6);
    margin-top: 12px;
    min-height: 16px;
}

.rc-msg-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #111;
    border: 0.5px solid rgba(201, 168, 76, 0.15);
    border-radius: 9px;
    padding: 9px 12px;
    width: 100%;
    max-width: 250px;
    margin-top: 8px;
}

.rc-msg-bar i {
    color: #C9A84C;
    font-size: 16px;
}

.rc-msg-bar-text {
    font-size: 11px;
    color: rgba(245, 245, 240, 0.6);
    text-align: left;
}

.rc-msg-bar-val {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: #C9A84C;
}

.rc-final-emoji {
    font-size: 32px;
    color: #C9A84C;
    margin-bottom: 12px;
}

.rc-cta {
    background: transparent;
    color: #C9A84C;
    border: 0.5px solid rgba(201, 168, 76, 0.35);
    border-radius: 8px;
    padding: 11px 26px;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 18px;
}

.rc-cta:hover {
    background: rgba(201, 168, 76, 0.08);
}

.rc-brand {
    font-size: 9px;
    color: rgba(201, 168, 76, 0.25);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 14px;
}

.rc-swipe-zone {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 30%;
    z-index: 25;
}

.rc-swipe-left {
    left: 0;
}

.rc-swipe-right {
    right: 0;
}

.rc-edge-hint {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: rgba(245, 245, 240, 0.25);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 20;
}

@media (max-width: 780px) {

    .rc-eyebrows{
        margin-top: 0px;
    }

    .rc-phone{
        max-width: 100%;
    }
    
    .rc-photo-stack {
        width: 250px;
        height: 280px;
        overflow: hidden;
        position: relative;
    }

    .rc-photo {
        height: 200px;
        width: 100%;
    }

    .rc-photo.p1 {
        top: 0;
        left: 0;
        transform: rotate(-7deg);
        z-index: 9;
    }

    .rc-photo.p2 {
        top: 15px;
        left: 10px;
        transform: rotate(4deg);
        z-index: 8;
    }

    .rc-photo.p3 {
        top: 30px;
        left: 20px;
        transform: rotate(-3deg);
        z-index: 7;
    }

    .rc-photo.p4 {
        top: 45px;
        left: 30px;
        transform: rotate(5deg);
        z-index: 6;
    }

    .rc-photo.p5 {
        top: 60px;
        left: 40px;
        transform: rotate(-4deg);
        z-index: 5;
    }

    .rc-photo.p6 {
        top: 75px;
        left: 50px;
        transform: rotate(3deg);
        z-index: 4;
    }

    .rc-photo.p7 {
        top: 90px;
        left: 60px;
        transform: rotate(-6deg);
        z-index: 3;
    }

    .rc-photo.p8 {
        top: 105px;
        left: 70px;
        transform: rotate(2deg);
        z-index: 2;
    }

    .rc-photo.p9 {
        top: 120px;
        left: 80px;
        transform: rotate(-5deg);
        z-index: 1;
    }
}