:root {
    --bg-base: #101214;
    --bg-card: #1A1D20;
    --bg-chalk: #2A2E33;
    --text-white: #FFFFFF;
    --text-muted: #9CA3AF;
    --accent-blue: #4A7CFF;
    --accent-grey: #9CA3AF;
    --accent-teal: #17D2C2;
    --accent-teal-glow: rgba(23, 210, 194, 0.3);
    --border-subtle: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100vw;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-base);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
}

.text-highlight {
    color: var(--accent-teal);
    position: relative;
    display: inline-block;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 100;
    padding: 1.5rem 0;
    background: rgba(16, 18, 20, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
}

.neo-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: -0.5px;
}

/* Spotlight & Background */
.spotlight {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(800px circle at var(--x, 50%) var(--y, 50%), rgba(74, 124, 255, 0.04), transparent 40%);
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--accent-teal);
    top: -100px;
    right: -100px;
    animation: float 15s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-30px, 50px);
    }
}

/* Layout Utilities */
section {
    position: relative;
    padding: 6rem 2rem;
    z-index: 2;
}

.content-container {
    max-width: 1100px;
    margin: 0 auto;
}

.center {
    text-align: center;
}

/* Hero */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 8rem;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    text-align: left;
}

.hero-content {
    text-align: left;
}

/* Override existing hero styles for the new layout */
.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-align: left;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 100%;
    margin: 0 0 3rem 0;
    font-weight: 300;
    text-align: left;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 3rem;
}

.waitlist-form {
    display: flex;
    gap: 1rem;
    align-items: stretch;
    width: 100%;
    max-width: 500px;
}

.waitlist-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 1rem 1.5rem;
    color: var(--text-white);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.waitlist-input::placeholder {
    color: var(--text-muted);
}

.waitlist-input:focus {
    border-color: var(--accent-teal);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(23, 210, 194, 0.1);
}

.waitlist-form .btn-primary {
    white-space: nowrap;
    flex-shrink: 0;
}

.hero-trust {
    font-size: 0.9rem;
    color: var(--text-muted);
    opacity: 0.7;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: left;
}

/* Hero Visual / Cards */
.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.audit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(10px);
}

.audit-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-teal);
    background: rgba(23, 210, 194, 0.05);
}

/* Professional Tier Highlighting */
.professional-tier {
    border: 2px solid var(--accent-teal) !important;
    transform: scale(1.02);
    background: rgba(23, 210, 194, 0.08) !important;
    box-shadow: 0 0 30px rgba(23, 210, 194, 0.2), 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.professional-tier:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 0 40px rgba(23, 210, 194, 0.3), 0 15px 50px rgba(0, 0, 0, 0.4);
    background: rgba(23, 210, 194, 0.12) !important;
    border-color: var(--accent-teal) !important;
}

.audit-card .card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.audit-card i {
    color: var(--accent-teal);
    font-size: 1.5rem;
}

.audit-card h3 {
    font-size: 1.25rem;
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-white);
}

.audit-card p {
    color: var(--text-muted);
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

.bundle-badge-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.bundle-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-teal);
    font-weight: 600;
    font-size: 0.9rem;
    background: rgba(23, 210, 194, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    width: fit-content;
}

.badge-pill.badge-highlight {
    display: inline-flex;
    align-items: center;
    color: var(--accent-blue);
    font-weight: 600;
    font-size: 0.9rem;
    background: rgba(74, 124, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: 1px solid rgba(74, 124, 255, 0.3);
    width: fit-content;
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-content,
    .hero-title,
    .hero-subtitle,
    .hero-trust {
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .bundle-badge-group {
        justify-content: center;
    }
}

/* Buttons */
.btn-primary {
    background: var(--text-white);
    color: var(--bg-base);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-primary:hover {
    background: var(--accent-teal);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(23, 210, 194, 0.2);
}

.btn-secondary {
    color: var(--text-white);
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border-bottom: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
    color: var(--accent-teal);
    border-color: var(--accent-teal);
}

.btn-text {
    color: var(--accent-teal);
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-text:hover {
    gap: 0.8rem;
}

/* Problem Section */
.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

.problem-card {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
}

.card-icon {
    font-size: 2rem;
    color: var(--accent-teal);
    margin-bottom: 1.5rem;
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.problem-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Insight Section */
.insight-section {
    text-align: center;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.02) 50%, transparent 100%);
}

.quote-box blockquote {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.insight-text {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Solution / How it works */
.solution-section .section-subtitle {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-top: 1rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    min-height: 520px;
}

.step-item {
    position: relative;
    padding-top: 2rem;
}

.step-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: -10px;
    left: 0;
    z-index: -1;
}

.step-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--accent-teal);
}

.step-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Outcome / Split Section */
.grid-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-title-sm {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.li-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-teal);
    flex-shrink: 0;
}

.block-text {
    display: block;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Chat Simulation */
.chat-simulation {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.chat-header {
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.red {
    background: #FF5F56;
}

.yellow {
    background: #FFBD2E;
}

.green {
    background: #27C93F;
}

.chat-header span {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-left: 0.5rem;
    font-family: monospace;
}

.chat-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message {
    max-width: 85%;
    padding: 1rem;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.chat-message.ai {
    background: rgba(23, 210, 194, 0.1);
    color: var(--text-white);
    border-bottom-left-radius: 2px;
    border: 1px solid rgba(23, 210, 194, 0.2);
    align-self: flex-start;
}

.chat-message.user {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border-bottom-right-radius: 2px;
    align-self: flex-end;
}

/* FAQ Section */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-item[open] {
    border-color: var(--accent-teal);
    background: rgba(26, 29, 32, 0.8);
}

.faq-item summary {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    list-style: none;
    position: relative;
    padding-right: 3rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--accent-teal);
    font-weight: 300;
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-item p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
    border-top: 1px solid transparent;
}

.faq-item[open] p {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 8rem 2rem;
}

.cta-section .section-title {
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.cta-group {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

/* Studio Section */
.who-we-are-section {
    padding: 8rem 0;
}

.studio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 2rem 0;
}

.studio-content h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.studio-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.studio-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 3rem;
    border-radius: 32px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.studio-card:hover {
    transform: translateY(-10px);
}

.studio-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 32px;
    padding: 1px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-teal));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.studio-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 2rem;
    position: relative;
    padding: 4px;
    box-shadow: 0 0 30px rgba(74, 124, 255, 0.2);
    overflow: hidden;
}

.studio-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid var(--bg-card);
}

.studio-quote {
    font-size: 1.4rem;
    line-height: 1.5;
    font-style: italic;
    color: var(--text-white);
    margin-bottom: 2rem;
    font-family: 'Space Grotesk', sans-serif;
}

.studio-author {
    margin-top: 1rem;
}

.studio-author-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-white);
}

.studio-author-role {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.studio-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0077B5;
    /* LinkedIn Brand Color */
    font-size: 0.9rem;
    margin-top: 0.75rem;
    transition: all 0.2s ease;
    font-weight: 500;
}

.studio-linkedin:hover {
    color: var(--text-white);
    transform: translateY(-1px);
}

.studio-card-actions {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
}

.studio-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(23, 210, 194, 0.1);
    color: var(--accent-teal);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.studio-content-actions {
    margin-top: 2.5rem;
}

.studio-content-actions .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.studio-content-actions .btn-primary i {
    font-size: 0.8rem;
}

.studio-card-actions .btn-primary {
    width: 100%;
}

@media (max-width: 992px) {
    .who-we-are-section {
        padding: 4rem 0 !important;
    }

    .who-we-are-section .content-container {
        padding: 0 1.5rem;
    }

    .studio-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 1rem 0;
    }

    .studio-content h2 {
        font-size: 2.5rem;
    }

    .studio-content p {
        font-size: 1.1rem;
    }

    .studio-card {
        padding: 2rem;
    }

    .studio-content-actions .btn-primary,
    .who-we-are-section .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .who-we-are-section {
        padding: 3rem 0 !important;
    }

    .who-we-are-section .content-container {
        padding: 0 1rem;
    }

    .studio-grid {
        gap: 2rem;
        padding: 0.5rem 0;
    }

    .studio-content h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .studio-content p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .studio-card {
        padding: 1.5rem;
        border-radius: 24px;
    }

    .studio-quote {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .studio-photo {
        width: 100px;
        height: 100px;
        margin-bottom: 1.5rem;
    }

    .studio-card-actions {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .who-we-are-section .btn-primary {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

/* Footer */
.main-footer {
    padding: 3rem 0;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .problem-grid,
    .grid-split {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .waitlist-form {
        flex-direction: column;
        max-width: 100%;
    }

    .waitlist-input {
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* Report Visual / What You Get Section */
.report-visual {
    position: relative;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.report-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.report-card:hover {
    transform: rotate(0deg) scale(1.02);
}

.report-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-teal));
}

.report-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.report-badge {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent-grey);
    letter-spacing: 0.05em;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.report-header h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-white);
}

.report-score-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.score-ring {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 8px solid rgba(255, 255, 255, 0.05);
    border-top-color: var(--accent-teal);
    border-right-color: var(--accent-teal);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(23, 210, 194, 0.1);
}

.score-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1;
    font-family: 'Space Grotesk', sans-serif;
}

.score-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.report-bars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.bar-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bar-label {
    width: 80px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.bar-track {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--accent-teal);
    border-radius: 4px;
}

.report-insight {
    background: rgba(255, 95, 86, 0.1);
    border: 1px solid rgba(255, 95, 86, 0.2);
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.report-insight i {
    color: #FF5F56;
    margin-top: 0.2rem;
    font-size: 0.9rem;
}

.report-insight p {
    font-size: 0.9rem;
    color: var(--text-white);
    margin: 0;
    line-height: 1.4;
    text-align: left;
}

@media (max-width: 768px) {
    .report-visual {
        padding: 0;
        margin-bottom: 2rem;
    }

    .report-card {
        transform: rotate(0deg);
        max-width: 100%;
    }
}

/* AI Chat Animation */
.ai-interview-demo {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}

.chat-bubble {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    max-width: 95%;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    line-height: 1.4;
    position: relative;
}

.ai-bubble {
    background: rgba(23, 210, 194, 0.1);
    color: var(--accent-teal);
    border: 1px solid rgba(23, 210, 194, 0.2);
    border-bottom-left-radius: 2px;
    align-self: flex-start;
}

.user-bubble {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border: 1px solid var(--border-subtle);
    border-bottom-right-radius: 2px;
    align-self: flex-end;
}

.chat-bubble.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Assign People Demo */
.assign-people-demo {
    margin-top: 1.5rem;
    height: 40px;
    display: flex;
    align-items: center;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.demo-input-line {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-white);
    font-size: 0.95rem;
}

#assign-icon {
    color: var(--accent-teal);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: scale(0.8);
}

.demo-notification {
    position: absolute;
    left: 0;
    display: none;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-teal);
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.demo-notification i {
    font-size: 1.1rem;
}

.typing-text.cursor::after {
    content: '|';
    display: inline-block;
    margin-left: 2px;
    animation: blink 1s step-end infinite;
    color: inherit;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.audience-section {
    padding-top: 0 !important;
}