.start-with-leads-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem 3rem;
    background-color: #ffffff;
}

.dark .start-with-leads-page {
    background-color: #111827;
}

.start-with-leads-heading {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #111827;
    text-align: center;
    margin-bottom: 2.5rem;
}

.dark .start-with-leads-heading {
    color: #f9fafb;
}

.start-with-leads-input-wrap {
    position: relative;
    width: 100%;
    max-width: 52rem;
    margin-bottom: 1.5rem;
}

.start-with-leads-input {
    width: 100%;
    min-height: 11rem;
    padding: 1.25rem 1.5rem 3.5rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #111827;
    background: #ffffff;
    border: 1px solid #d8ccf8;
    border-radius: 0.75rem;
    resize: none;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.start-with-leads-input::placeholder {
    color: #9ca3af;
}

.start-with-leads-input:focus {
    border-color: #c4b5fd;
    box-shadow: 0 0 0 3px rgba(196, 181, 253, 0.35);
}

.dark .start-with-leads-input {
    color: #f9fafb;
    background: #1f2937;
    border-color: #4c1d95;
}

.start-with-leads-actions {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.start-with-leads-mic {
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border: none;
    background: transparent;
    color: #9ca3af;
    cursor: pointer;
    transition: color 0.15s ease, background-color 0.15s ease;
}

.start-with-leads-mic:hover:not(:disabled) {
    color: #4b5563;
    background: #f3f4f6;
}

.start-with-leads-mic.voice-listening,
.start-with-leads-mic.voice-listening:hover:not(:disabled) {
    color: #ef4444;
}

.start-with-leads-mic:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.dark .start-with-leads-mic:hover:not(:disabled) {
    color: #e5e7eb;
    background: #374151;
}

.start-with-leads-submit {
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border: 1px solid #e5e7eb;
    background: #111827;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease, opacity 0.15s ease;
}

.start-with-leads-submit:hover:not(:disabled) {
    background: #000000;
    color: #ffffff;
}

.start-with-leads-submit:disabled {
    opacity: 0.45;
    background: #f9fafb;
    color: #6b7280;
    cursor: not-allowed;
}

.dark .start-with-leads-submit {
    background: #f9fafb;
    color: #111827;
    border-color: #4b5563;
}

.dark .start-with-leads-submit:hover:not(:disabled) {
    background: #ffffff;
}

.dark .start-with-leads-submit:disabled {
    background: #374151;
    color: #9ca3af;
}

.start-with-leads-pills {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    max-width: 52rem;
}

.start-with-leads-pill {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #111827;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 9999px;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.start-with-leads-pill:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

.dark .start-with-leads-pill {
    color: #f9fafb;
    background: #1f2937;
    border-color: #374151;
}

.dark .start-with-leads-pill:hover {
    background: #374151;
}

.start-with-leads-skip {
    margin-top: 2rem;
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    background: transparent;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 0.2em;
    transition: color 0.15s ease;
}

.start-with-leads-skip:hover {
    color: #111827;
}

.dark .start-with-leads-skip {
    color: #9ca3af;
}

.dark .start-with-leads-skip:hover {
    color: #f9fafb;
}
