.plan-act-pill {
    display: inline-flex;
    background-color: #000;
    border-radius: 50px;
    padding: 4px;
    position: relative;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .5), 0 8px 20px rgba(0, 0, 0, .3);
    overflow: hidden;
    cursor: pointer
}

.pill-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    border-radius: 50px;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    z-index: 1
}

.pill-slider.act-active {
    background-color: #3e5ee1;
    transform: translateX(100%);
    border-radius: 0 50px 50px 0
}

.pill-slider.plan-active {
    background-color: #cd8a4c;
    transform: translateX(0);
    border-radius: 50px 0 0 50px
}

.pill-section {
    padding: 12px 32px;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: color .3s ease;
    position: relative;
    z-index: 2;
    outline: none;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif
}

.pill-plan {
    margin-right: 0;
    border-radius: 50px 0 0 50px
}

.pill-act {
    border-radius: 0 50px 50px 0
}

.pill-section:hover {
    opacity: .8
}

.pill-section:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px
}

@media (max-width:768px) {
    .pill-section {
        padding: 10px 24px;
        font-size: 16px
    }
}

@media (max-width:480px) {
    .pill-section {
        padding: 8px 20px;
        font-size: 14px
    }
}

.conversational-partner-section {
    flex-direction: column;
    overflow: hidden;
    padding: 80px 40px;
    position: relative;
    background-color: #1a0836;
    min-height: 600px
}

.conversational-partner-section,
.cp-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%
}

.cp-content-wrapper {
    max-width: 1200px;
    gap: 60px
}

.cp-left-content {
    flex: 0 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    gap: 40px
}

.cp-image-container {
    position: relative;
    width: 520px;
    height: 468px
}

.cp-image-bg,
.cp-image-fg {
    position: absolute;
    inset: 0;
    overflow: hidden
}

.cp-background-image,
.cp-foreground-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.cp-video-placeholder {
    bottom: 38px;
    right: 0;
    overflow: hidden
}

.cp-pill-container,
.cp-video-placeholder {
    position: absolute;
    width: 390px;
    height: 390px;
    border-radius: 21px;
    background-color: transparent
}

.cp-pill-container {
    bottom: 68px;
    right: 58px;
    display: flex;
    align-items: center;
    justify-content: center
}

.cp-video,
.cp-video-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit
}

.cp-video {
    cursor: pointer;
    display: block;
    transition: transform .2s ease, filter .3s ease;
    filter: sepia(.6) hue-rotate(220deg) saturate(1.4) contrast(1.1) brightness(1.1)
}

.cp-video:hover {
    transform: scale(1.02);
    filter: none
}

.cp-video::-webkit-media-controls {
    opacity: .7;
    transition: opacity .3s ease
}

.cp-video:hover::-webkit-media-controls {
    opacity: 1
}

.cp-mascot {
    width: 130px;
    height: 130px;
    object-fit: contain;
    position: absolute;
    left: -65px;
    bottom: 65px
}

.cp-right-content {
    flex: 1;
    max-width: 500px
}

.cp-heading-group {
    margin-bottom: 40px
}

.cp-main-heading {
    font-family: Geist Mono, monospace;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -.07em;
    color: #fbfbfd;
    margin: 0;
    white-space: nowrap
}

.cp-heading-bold {
    font-weight: 700;
    white-space: nowrap
}

.cp-features-list {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.cp-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px
}

.cp-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0
}

.cp-feature-icon {
    width: 20px;
    height: 20px;
    color: #f3ad8a
}

.cp-feature-text-group {
    flex: 1
}

.cp-feature-title {
    font-family: Geist, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -.01em;
    color: #f3ad8a;
    margin: 0 0 8px
}

.cp-feature-description {
    font-family: Geist, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: hsla(0, 0%, 100%, .7);
    margin: 0
}

.cp-ground-transition {
    display: none
}

@media (max-width:1024px) {
    .cp-content-wrapper {
        flex-direction: column-reverse;
        gap: 40px;
        text-align: center
    }

    .cp-left-content {
        width: 100%;
        display: flex;
        justify-content: center
    }

    .cp-left-content,
    .cp-right-content {
        align-items: center
    }

    .cp-heading-group {
        text-align: center
    }

    .cp-features-list {
        align-items: center;
        max-width: 500px
    }

    .cp-feature-item {
        flex-direction: column;
        text-align: center;
        gap: 16px
    }

    .cp-feature-item,
    .cp-feature-text-group {
        align-items: center
    }

    .cp-feature-description,
    .cp-feature-title {
        text-align: center
    }

    .cp-feature-title {
        font-size: 18px
    }

    .cp-grid-box {
        width: 250px;
        height: 280px
    }
}

@media (max-width:640px) {
    .conversational-partner-section {
        padding: 60px 20px
    }

    .cp-left-content {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px
    }

    .cp-main-heading {
        font-size: 36px
    }

    .cp-heading-bold,
    .cp-main-heading {
        white-space: normal
    }

    .cp-image-container {
        width: 100%;
        max-width: 320px;
        height: auto;
        aspect-ratio: 520/468;
        margin: 0 auto
    }

    .cp-video-placeholder {
        width: 75%;
        height: 75%;
        bottom: 5%;
        right: 5%
    }

    .cp-pill-container {
        width: 75%;
        height: 75%;
        bottom: 17%;
        right: 12.5%
    }

    .cp-mascot {
        width: 80px;
        height: 80px;
        left: -40px;
        bottom: 40px
    }

    .cp-grid-box {
        width: 200px;
        height: 220px
    }

    .cp-feature-item {
        flex-direction: column;
        text-align: center;
        gap: 16px
    }

    .cp-feature-item,
    .cp-feature-text-group {
        align-items: center
    }

    .cp-feature-description,
    .cp-feature-title {
        text-align: center
    }

    .cp-feature-title {
        font-size: 18px
    }

    .cp-feature-description {
        font-size: 14px
    }
}

.faq-section {
    background-color: #fcfaff;
    padding: 120px 0;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.faq-section p {
    color: #000000;
}

.faq-section h2 {
    color: #000000;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start
}

.faq-header {
    position: sticky;
    top: 120px
}

.faq-title {
    font-family: var(--font-geist-mono), "Geist Mono", monospace;
    font-size: 48px;
    font-weight: 300;
    line-height: 1.1;
    color: #fff;
    margin: 0;
    letter-spacing: -.02em
}

.faq-title-bold {
    font-family: var(--font-geist), "Geist", sans-serif;
    font-weight: 700;
    white-space: nowrap
}

.faq-content {
    display: flex;
    flex-direction: column
}

.faq-item {
    border-bottom: 1px solid hsla(0, 0%, 0%, 0.2)
}

.faq-item:first-child {
    border-top: 1px solid hsla(0, 0%, 0%, 0.2)
}

.faq-question {
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: all .3s ease
}

.faq-question:hover .faq-question-text {
    opacity: .8
}

.faq-question-text {
    font-family: var(--font-geist), "Geist", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
    transition: opacity .3s ease
}

.faq-icon {
    font-size: 28px;
    font-weight: 300;
    color: #000000;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s ease;
    flex-shrink: 0
}

.faq-icon.open {
    transform: rotate(45deg)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease-out, padding .4s ease-out
}

.faq-answer.open {
    max-height: 500px;
    padding-bottom: 24px
}

.faq-answer-inner {
    color: hsla(0, 0%, 100%, .7);
    font-family: var(--font-geist), "Geist", sans-serif;
    font-size: 16px;
    line-height: 1.6
}

.faq-answer-content {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.faq-answer-content p {
    margin: 0
}

.faq-answer-list {
    margin: 0;
    padding-left: 20px;
    list-style-type: decimal
}

ul.faq-answer-list {
    list-style-type: disc
}

.faq-answer-list li {
    margin-bottom: 8px;
    line-height: 1.5
}

.faq-answer-note {
    font-size: 14px;
    color: hsla(0, 0%, 100%, .5);
    margin-top: 8px
}

@media (max-width:1024px) {
    .faq-container {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .faq-header {
        position: static;
        text-align: center;
        margin-bottom: 20px
    }

    .faq-title {
        font-size: 36px
    }
}

@media (max-width:768px) {
    .faq-section {
        padding: 80px 0
    }

    .faq-container {
        padding: 0 20px
    }

    .faq-title {
        font-size: 32px
    }

    .faq-question-text {
        font-size: 16px
    }

    .faq-answer-inner {
        font-size: 14px
    }

    .faq-icon {
        font-size: 24px
    }
}